    body {
        margin: 0;
        font-family: Arial, sans-serif;
        background-image: url('../imagenes/fondo.jpg');
        background-repeat: no-repeat;
        background-position: center center;
        background-attachment: fixed;
        background-size: cover;
        min-height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
    }

    .login-container {
        background: rgb(228, 213, 187);
        padding: 40px;
        border-radius: 10px;
        width: 430px;
        text-align: center;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
        padding-top: 20px;
    }

    /* ENCABEZADO DE BIENVENIDA */
    .welcome-header {
        background-color: rgba(228, 213, 187, 0.9);
        padding: 25px 20px;
        border-radius: 10px 10px 0 0;
        margin-bottom: 20px;
        text-align: center;
        margin-left: -40px;
        margin-right: -40px;
        margin-top: -40px;
        border-bottom: 3px solid #8B4513;
    }
    
    /* Título principal BIENVENIDO */
    .welcome-main-title {
        font-family: 'Georgia', serif;
        font-size: 28px;
        font-weight: bold;
        color: #8B4513;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 8px;
        line-height: 1.2;
    }
    
    /* Subtítulo ACADEMIA DE ARTE */
    .welcome-subtitle {
        font-family: 'Georgia', serif;
        font-size: 22px;
        color: #333;
        margin-bottom: 15px;
        font-weight: normal;
        letter-spacing: 1px;
    }
    
    /* Eslogan "Donde la creatividad cobra vida" */
    .welcome-tagline {
        font-family: 'Arial', sans-serif;
        font-size: 16px;
        color: #666;
        font-style: italic;
        padding-top: 10px;
        margin-top: 10px;
        border-top: 1px solid #8B4513;
    }

    h1 {
        margin-bottom: 30px;
        font-size: 28px;
        color: #000;
        margin-top: 10px;
    }

    input[type="text"],
    input[type="password"] {
        width: 100%;
        padding: 10px;
        margin: 10px 0 20px 0;
        border: 1px solid #000;
        border-radius: 5px;
        background: rgb(230, 227, 227);
        color: #000;
        box-sizing: border-box;
    }

    input[type="text"]::placeholder,
    input[type="password"]::placeholder {
        color: #555;
    }

    button {
        width: 100%;
        padding: 10px;
        background-color: #000;
        color: rgb(255, 255, 255);
        border: none;
        border-radius: 5px;
        font-weight: bold;
        cursor: pointer;
        transition: background-color 0.3s;
        margin-bottom: 10px;
    }

    button:hover {
        background-color: #333;
    }

    .mensaje {
        color: #d8000c;
        margin-bottom: 15px;
        padding: 10px;
        background-color: rgba(255, 200, 200, 0.2);
        border-radius: 5px;
        border: 1px solid #d8000c;
    }

    .btn-registrarse {
        background-color: #555;
    }

    .btn-registrarse:hover {
        background-color: #777;
    }