﻿body {
    background-image: url('../img/Fondo_Login/background.png'), url('../img/Fondo_Login/background2.png');
    background-repeat: no-repeat, no-repeat;
    background-size: 30%, 30%;
    background-position: left center, right center;
    background-color: #fef8f5;
    height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

@media (max-width: 768px) {
    body {
        background-size: 50%, 50%;
        background-position: left bottom, right bottom;
        padding-top: 2rem;
    }

    .login-form {
        width: 95%;
    }
}

.login-form {
    width: 400px;
    max-width: 100%;
    padding: 30px;
    background-color: #ffffffee;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 1;
    position: relative;
}

.login-form-header {
    text-align: center;
    margin-bottom: 25px;
}

.login-form-font-header {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    letter-spacing: 1px;
}

    .login-form-font-header span {
        color: #007bff;
    }

.login-from-row {
    margin-bottom: 18px;
}

.form-label {
    font-weight: 500;
    margin-bottom: 5px;
}
