.login {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 75vh;
}

.login form {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 350px;
}

.login h2 {
    text-align: center;
    margin-bottom: 20px;
}

.login label {
    display: block;
    margin: 10px 0 5px;
}

.login input[type="text"],
.login input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    outline: none;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
}

.login input[type="text"]:focus {
    border-color: #007bff;
    border-width: 2px;
}

.login input[type="password"]:focus {
    border-color: #007bff;
    border-width: 2px;
}

.login .primario {
    width: 100%;
    padding: 10px;
    background-color: #69be28;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.login .primario:hover {
    background-color: #5ea825;
}

.login .forgot-password {
    text-align: center;
    margin: 10px 0;
}

.login .forgot-password a {
    font-weight: 500;
    color: #646cff;
    text-decoration: inherit;
}