body {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Montserrat", sans-serif;
    background: linear-gradient(to bottom, #0b1020, #1b2a4a);

}

.container {
    width: 400px;
    height: 520px;
    background: rgba(17, 24, 39, 0.75);
    backdrop-filter: blur(12px);
    border-radius: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding: 30px 20px;
    box-shadow: 0 0 25px rgba(16, 32, 64, 0.5);
    border: 1px solid rgba(42, 54, 77, 0.6);
}

.container h2 {
    color: var(--color-text);
    font-size: 28px;
    font-weight: 700;
}

img.logo {
    height: 75px;
    width: 75px;
    border-radius: 18px;
    margin-top: 10px;
}

.form_login {
    display: flex;
    flex-direction: column;
    width: 100%;
    
    padding-top: 15px;
}

.labels {
    text-align: left;
    display: block;
    margin: 14px 0 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-muted);
}

input {
    background: rgba(17, 24, 39, 0.9);
    box-sizing: border-box;
    height: 45px;
    border-radius: 12px;
    border: 1px solid rgba(42, 54, 77, 0.9);
    padding: 0 12px;
    color: var(--color-text);
    font-size: 15px;
    outline: none;
    transition: 0.3s;
}

input::placeholder {
    color: var(--color-muted);
}

input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 8px rgba(45, 108, 223, 0.5);
}

.password-box {
    position: relative;
    width: 100%;
}

.password-box input{
    width: 100%;
    padding-right: 40px; /* espaço do olho */
    box-sizing: border-box;
}

.password-box .show-pass {
    position: absolute;
    color: var(--color-text);
    right: 15px;
}

.show-pass:hover {
    color: var(--color-muted);
    cursor: pointer;
}

.btn {
    margin-top: 26px;
    width: 100%;
    height: 45px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(90deg, #2d6cdf, #1fb6a6);
    font-size: 16px;
    font-weight: 700;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    transform: scale(1.03);
    box-shadow: 0 0 12px rgba(45, 108, 223, 0.5);
}

.cadastro-link {
    margin-top: 16px;
    font-size: 13px;
    color: var(--color-muted);
    text-decoration: none;
    transition: 0.2s;
}

.cadastro-link:hover {
    color: var(--color-text);
}
