
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


body {
    background: rgb(252, 251, 251);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}



.login-container {
    background-image: url(../img/fundo.png);
    background-position: center;
    background-size: cover;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px solid ;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 450px;
    border: 3px solid #7D2E1A;
}



.login-container h2 {
    text-align: center;
    margin-bottom: 24px;
    color: #333333;
    font-size: 28px;
    
}


.input-group {
    margin-bottom: 20px;

}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: #050505;
    font-size: 16px;
    font-weight: 600;
    
    
}


.input-group input {
    width: 100%;
    padding: 12px 16px;
    border: 3px solid #7D2E1A;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
}


.input-group input:focus {
    border-color: #6c63ff;
    box-shadow: 0 0 8px rgba(108, 99, 255, 0.2);
}


.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    font-size: 14px;
    color: #555555;
}

.options a {
    color: #009640;
    text-decoration: none;
    transition: color 0.2s;
}

.options a:hover {
    text-decoration: underline;
    color: #514bdf;
}


.btn-login {
    width: 100%;
    padding: 12px;
    background-color:#009640;
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}


.btn-login:hover {
    background-color: #7D2E1A;
}