*, *:after, *:before { -webkit-box-sizing: border-box; box-sizing: border-box; }
.clearfix:before, .clearfix:after { content: ''; display: table; }
.clearfix:after { clear: both; }

.input {
	position: relative;
	display: inline-block;
	width: 100%;
    margin: 0 0 40px 0;
}

.inputAzul{
    border-bottom: 1px solid var(--azul);
}

.inputBlanco {
    border-bottom: 1px solid white;
}

.ancho45 textarea{
    height: 90%;
}
.textarea {
    height: auto;
}

.textarea__field--madoka{
    height: 90%;
}

.input__field {
	position: relative;
	display: block;
	float: right;
    font-size: 1.4rem;
    font-weight: 300;
	padding: 10px;
/*	width: 60%;*/
	border: none;
	-webkit-appearance: none; /* for box shadows to show on iOS */
}

.input__field:focus {
	outline: none;
}

.input__label {
	display: inline-block;
/*	float: right;*/
	padding: 0 10px;
/*	width: 40%;*/
	
	font-weight: 300;
	font-size: 1.4rem;
/*
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
*/
}

.input__labelBlanco {
	color: white;

}

.input__labelAzul {
	color: var(--azul);

}

.input__label-content {
	position: relative;
	display: block;
	width: 100%;
    padding: 10px 0;
}

/* Individual styles */


/* Madoka */

.input__field--madoka {
	width: 100%;
	background: transparent;
	color: var(--azul);
}

.input__field--madokaBlanco {
	color: white;
}

.input__field--madokaAzul {
	color: var(--azul);
}

.input__label--madoka {
	position: absolute;
	width: 100%;
	height: 100%;
	text-align: left;
	cursor: text;
}

.input__label--madokaBlanco {
	color: white;
}

.input__label--madokaAzul {
	color: var(--azul);
}

.input__label-content--madoka {
	-webkit-transform-origin: 0% 50%;
	transform-origin: 0% 50%;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
}

/*
.input__field--madoka:focus + .input__label--madoka,
.input--filled .input__label--madoka {
	cursor: default;
	pointer-events: none;
}
*/


.input__field--madoka:focus + .input__label--madoka .input__label-content--madoka,
.input--filled .input__label-content--madoka {
	-webkit-transform: scale3d(0.9, 0.9, 1) translate3d(0, -35px, 0);
	transform: scale3d(0.9, 0.9, 1) translate3d(0, -35px, 0);
}



