*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: linear-gradient(45deg, #8e24aa 0%, #f06292 100%);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-card {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
    text-align: left;
}

.header {
    text-align: center;
    margin-bottom: 10px;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
}

.logo img {
    max-width: 150px;   
    height: auto;       
    display: block;
}

.subtitle {
    font-size: 14px;
    color: #7d5a8a;
    margin-top: 20px;
    margin-left: 4px;
}

h2 {
    font-size: 20px;
    margin-bottom: 20px;
    margin-top: 20px;
    color: #4a148c;
}

.input-formulario {
    margin-bottom: 20px;
}

.input-formulario label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #6a1b9a;
    margin-bottom: 8px;
}

.input-formulario input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #f3e5f5;
    border-radius: 8px;
    background-color: #fff9fe;
    outline: none;
    transition: border 0.3s;
}

.input-formulario input:focus {
    border-color: #eb2567;
    box-shadow: 0 0 5px rgba(233, 30, 99, 0.2);
}

.btn-primary {
    width: 100%;
    padding: 12px;
    background: linear-gradient(90deg, #d81b60, #8e24aa);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
    margin-top: 10px;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-primary a{
    text-decoration: none;
    color: rgb(255, 255, 255);
}

.footer {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
    color: #555;
}

.footer a {
    color: #bb3b6a;
    text-decoration: none;
    font-weight: bold;
}

.incorrecte p{
    color: red;
    font-size: 11px;
}