body {
    margin: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background: linear-gradient(135deg, pink 30%, rgb(199, 114, 223) 100%);*/
    background-image: url(../images/fondo.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    font-family: Arial, sans-serif;
}

.login-card {
    background-color: white;
    padding: 40px;
    width: 380px;
    border-radius: 20px;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}
.logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
    display: block;
}

.brand {
    color: pink;
    margin: 0;
    font-size: 2.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.subtitle {
    color: #888;
    font-size: 0.9em;
    margin-bottom: 30px;
}

h2 {
    text-align: left;
    font-size: 1.5em;
    margin-bottom: 25px;
    color: #333;
}

.input-group {
    margin-bottom: 20px;
    text-align: left;
}
.input-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 0.9em;
    color: #444;
}
input {
    width: 100%;
    padding: 12px 15px;
    box-sizing: border-box;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background-color: #f9f9f9;
    font-size: 1em;
    outline: none;
    transition: border 0.3s;
}

input:focus {
    border-color: rgb(246, 114, 185);
}

button {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, rgb(244, 162, 176) 30%, rgb(199, 114, 223) 100%);    
    color: white;
    font-weight: bold;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s;
}
button:hover {
    /*background: rgb(215, 106, 177);*/
    background: linear-gradient(135deg, rgb(219, 89, 174) 30%, rgb(173, 90, 196) 100%);
}

.footer-text {
    margin-top: 25px;
    font-size: 0.9em;
    color: #666;
}

.footer-text a {
    color: rgb(215, 106, 177);
    text-decoration: none;
    font-weight: bold;
}