/* styles.css */

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url('/Images/background-login.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.corner-image {
    position: fixed;
    top: 20px;
    left: 220px;
    width: 15%; /*  Por ejemplo, 25% del ancho de la pantalla */
    height: auto;
    opacity: 0.8; /* Ajusta la opacidad si lo deseas */
}


.container {
    width: 400px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 40px;
    text-align: center; /* Centra el contenido */
}


.logo {
    margin-bottom: 30px;
}

    .logo img {
        max-width: 200px; /* Ajusta el tamaño del logo según sea necesario */
        height: auto;
    }

.title {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #333;
}

.input-group {
    margin-bottom: 15px;
}

    .input-group label {
        display: block;
        text-align: left;
        margin-bottom: 5px;
        font-weight: 600;
    }

    .input-group input {
        width: calc(100% - 20px); /* Ajusta el ancho */
        padding: 10px;
        border: 1px solid #ced4da;
        border-radius: 4px;
        box-sizing: border-box;
    }


button {
    background-color: #007bff; /* Azul corporativo (puedes cambiarlo) */
    color: white;
    padding: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
    margin-bottom: 15px; /* Espacio inferior */
}

    button:hover {
        background-color: #0056b3;
    }



.forgot-password {
    margin-bottom: 15px; /* Espacio inferior */
}


    .forgot-password a, .switch-form a {
        color: #007bff;
        text-decoration: none;
    }

        .forgot-password a:hover, .switch-form a:hover {
            text-decoration: underline;
        }

.switch-form {
    margin-top: 10px; /* Espacio superior */
}
