* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: #0c0036;
    /* background: radial-gradient(circle, rgba(49, 5, 130, 1) 45%, rgba(14, 2, 42, 1) 100%); */
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
}

.options {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px;
    font-size: 13px;
    width: 96%;
}


.logo {
    width: 100px;
    height: 90px;

}

img {
    width: 100px;
    height: fit-content;
}

.row1 {
    margin: 0 !important;
    width: 100%;
}

.row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 250px;
    margin: 0 !important;
}

.validate {
    width: 85% !important;
}

.validate,
label:not(.checkbox-label) {
    margin-left: 35px !important;
}

.input-field {
    width: 100%;
    height: 40px;
    padding: 0 !important;

}

input {
    height: 35px !important;
}

#icon-id,
#icon_password {
    -webkit-box-shadow: 0 0 0 30px #0c0036 inset !important;
}

.input-field:nth-child(2) {
    margin-bottom: 0;
}

/* label color */
.input-field label,
input.valid {
    color: #b1afaf85;
    font-size: 13px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:active {
    -webkit-text-fill-color: rgb(255, 255, 255) !important;
    -webkit-box-shadow: 0 0 0 30px #0c0036 inset !important;
}

.input-field input:focus+label {
    color: #ee3514e3 !important;
}

input.valid+label,
input.invalid+label {
    color: #fdfdfde3;
}

.input-field input:focus {
    color: #ee3514e3 !important;
    border-bottom: 1px solid #ee3514e3 !important;
    box-shadow: none !important;
}

input.valid,
input.invalid {
    color: #fdfdfde3;
    border-bottom: 1px solid #fdfdfde3 !important;
    box-shadow: none !important;
}




/* icon prefix focus color */
.input-field .prefix.active {
    color: #ee3514e3 !important;
}

.btn {
    background-color: #ee3514e3;
    color: #fdfdfde3;
    width: 95%;
    margin-top: 30px;
    font-size: 10px !important;
}

i {
    font-size: 25px !important;
    color: #fdfdfde3;
}


.text-header {
    color: #fdfdfde3;
    margin-bottom: 25px;
    font-size: 13px;
}

.btn:hover,
.btn:focus {
    background-color: #fa4525ee;
}

#troca-senha:hover {
    cursor: pointer;
}

input {
    color-scheme: dark;
}

#btnEntrar {
    padding-bottom: 20px !important;
}

#logo-azure {
    width: 35px;
    height: 35px;
}

#login-azure:hover {
    cursor: pointer;
}

.flip-container {
    margin-top: 10px;
    width: 300px;
    height: 200px;
    position: relative;
    margin: 0 auto;
}

.flipper {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.front, .back {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    backface-visibility: hidden;
}

.front {
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.back {
    color: white;
    transform: rotateY(180deg);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.flipper.flipped {
    transform: rotateY(180deg);
}

.login-form {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

#azure-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

#azure-login {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#logo-azure {
    margin: 5 auto;
}

a {
    color: white;
    text-align: center;
    cursor: pointer;
    display: block;
    margin-top: 20px;
}