@import url('https://fonts.googleapis.com/css2?family=Knewave&family=Nunito:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    font-family: Nunito, sans-serif;
}

.container {
    width: 100%;
    margin: 0 auto;
}

.aliLogo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.Lagun {
    width: 68%;
}

.container-login {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: #00133a;

}

.wrap-login {
    width: 500px;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    padding: 10px 55px 33px 55px;
    box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.2);
}

.login-form {
    width: 100%;
}

.login-form-title {
    font-family: Nunito, sans-serif;
    display: block;
    font-size: 30px;
    color: azure;
    line-height: 1.2;
    text-align: center;
}

.login-form-title img {
    width: 90px;
}

.wrap-input {
    width: 100%;
    position: relative;
    border-bottom: 2px solid #adadad;
    margin-bottom: 37px;
}

.input {
    font-size: 15px;
    color: #000000;
    line-height: 1.2;
    border: none;
    display: block;
    width: 100%;
    height: 45px;
    background-color: transparent;
    padding: 0 5px;
    font-family: Nunito, sans-serif;
}

.focus-input {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    color: #808080;
    font-family: Nunito, sans-serif;
}

.focus-input::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -2px;
    color: white;
    left: 0;
    width: 0;
    height: 2px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    background: #1635ff;
}

.focus-input::after {
    font-family: Nunito, sans-serif;
    font-size: 15px;
    color: transparent;
    line-height: 1.2;
    content: attr(data-placeholder);
    display: block;
    width: 100%;
    position: absolute;
    top: -5px;
    left: 0px;
    padding-left: 5px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.input:focus {
    outline: 0;
}

.input:focus+.focus-input::after {
    top: -15px;
}

.input:focus+.focus-input::before {
    width: 100%;
}

.has-val+.focus-input::after {
    top: -15px;
}

.has-val+.focus-input::before {
    width: 100%;
    top: -15px;
}

.container-login-form-btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 13px;
}

.login-form-btn {
    font-size: 15px;
    border: none;
    border-radius: 10px;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    background: #00133A;

}

.login-form-btn:hover {
    cursor: pointer;
}
.login-alert {
    width: 100%;
    border-radius: 14px;
    padding: 12px 14px;
    margin: 0 0 22px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
    border: 1px solid transparent;
}

.login-alert.erro {
    background: #fff1f2;
    color: #b42318;
    border-color: #fecdd3;
}

.login-alert.sucesso {
    background: #ecfdf3;
    color: #027a48;
    border-color: #bbf7d0;
}

.login-links {
    display: flex;
    justify-content: flex-end;
    margin: -20px 0 22px;
}

.login-links.center {
    justify-content: center;
    margin: 8px 0 0;
}

.login-links a,
.auth-actions a,
.link-button {
    color: #00133a;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
}

.login-links a:hover,
.auth-actions a:hover,
.link-button:hover {
    text-decoration: underline;
}

.auth-card {
    background: #ffffff;
    padding-top: 34px;
    border-radius: 24px;
}

.auth-title {
    text-align: center;
    margin-bottom: 28px;
}

.auth-title img {
    width: 130px;
    max-width: 62%;
    margin-bottom: 12px;
}

.auth-title h1 {
    color: #00133a;
    font-size: 26px;
    line-height: 1.15;
    margin-bottom: 8px;
}

.auth-title p {
    color: #475569;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
}

.auth-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.link-button {
    appearance: none;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: Nunito, sans-serif;
    padding: 0;
}

.code-input input {
    letter-spacing: 8px;
    font-size: 20px;
    font-weight: 900;
    text-align: center;
}

@media (max-width: 560px) {
    .wrap-login {
        width: 100%;
        padding: 24px 24px 28px;
    }

    .auth-actions {
        justify-content: center;
        text-align: center;
    }
}
