/* LOGIN PAGE */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #2b2b2b;
    color: white;
    min-height: 100vh;
    font-family: Arial, sans-serif;
}

/* centraliza tudo */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* card */
.login-box {
    background: #f7a600;
    width: 380px;
    padding: 40px 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* título */
.login-box h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #2b2b2b;
    font-size: 32px;
}

/* inputs */
.login-box input {
    width: 100%;
    padding: 14px;
    margin: 10px 0;
    border: none;
    border-radius: 8px;
    background: #d9d9d9;
    color: #111;
    font-size: 15px;
    outline: none;
}

/* placeholder */
.login-box input::placeholder {
    color: #555;
}

/* password */
.password-box {
    position: relative;
}

.password-box span {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #333;
}

/* botão */
.login-box button {
    width: 100%;
    padding: 14px;
    margin-top: 15px;
    border: none;
    border-radius: 8px;
    background: #2b2b2b;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.login-box button:hover {
    background: #222;
    transform: scale(1.02);
}

/* links */
.login-box a {
    color: #2b2b2b;
    font-weight: bold;
    text-decoration: none;
}

.login-box a:hover {
    text-decoration: underline;
}

/* textos */
.switch-text,
.login-box p {
    text-align: center;
    margin-top: 18px;
    color: #111;
}

.password-box{
    position: relative;
}

.password-box input{
    width: 100%;
}

#toggleSenha{
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
}