/* Restricción de los estilos para que solo apliquen a la sección del login */
.login-wrapper {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.login-wrapper .login-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 100%;
    transition: transform 0.3s ease-in-out;
}

.login-wrapper .login-container:hover {
    transform: scale(1.05); /* Efecto de zoom suave al pasar el mouse */
}

.login-wrapper h2 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
}

.login-wrapper .form-group {
    position: relative;
    margin-bottom: 25px;
}

.login-wrapper .form-control {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    font-size: 16px;
    width: 100%;
    transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.login-wrapper .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.5);
}

.login-wrapper .btn-login {
    background-color: #007bff;
    color: white;
    border: none;
    width: 100%;
    padding: 10px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.login-wrapper .btn-login:hover {
    background-color: #0056b3;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.5);
}

.login-wrapper .forgot-password {
    text-align: center;
    margin-top: 15px;
}

.login-wrapper .forgot-password a {
    text-decoration: none;
    color: #007bff;
    transition: color 0.3s ease-in-out;
}

.login-wrapper .forgot-password a:hover {
    color: #0056b3;
}

/* Estilo global para que no se aplique a todo */
body {
    background-color: #f5f5f5;
}
