* {
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    margin: 0;
    height: 700px;
    background: linear-gradient(#8c8e9e, #803d3d);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.contenidor-inici {
    width: 100%;
    display: flex;
    justify-content: center;
}

.targeta-inici {
    background: white;
    width: 380px;
    padding: 40px 35px;
    border-radius: 16px;
    box-shadow: 0 20px 40px black;
    text-align: center;
}

.capçalera-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.logo-imatge {
    width: 70px; 
    height: auto;
    margin-bottom: -5px;
}

.text-logo {
    font-size: 26px;
    font-weight: 700;
    color: #b90404;
    margin: 0;
}

.subtitol {
    font-size: 14px;
    color: black;
    margin: 10px 0 25px;
}

.titol {
    margin-bottom: 25px;
    font-size: 22px;
    color: black;
}

.formulari-inici {
    text-align: left;
}

.formulari-inici label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    color: #374151;
}

.formulari-inici input {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 18px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background-color: #f9fafb;
    font-size: 14px;
}

.formulari-inici input:focus {
    outline: none;
    border-color: #6366f1;
    background-color: #fff;
}

.boto-entrar {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background-color: #cc0606;
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3;
}

.boto-entrar:hover {
    background-color: black;
}

.registre {
    margin-top: 20px;
    font-size: 14px;
    color: #374151;
    text-align: center;
}

.registre a {
    color: #cc0606;
    font-weight: 600;
}

.registre a:hover {
    text-decoration: underline;
}