* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family:
        system-ui,
        -apple-system,
        sans-serif;
}

body {
    height: 100vh;
    background: url("/assets/welcome.webp") no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Container global */
.container {
    width: 100%;
    padding-left: 80px;
}

/* Carte login */
.login-card {
    width: 400px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.logo img {
    height: 36px;
    width: auto;
    display: block;
}

.logo span {
    font-size: 22px;
    font-weight: 700;
    color: #ed645d;
}
/* Inputs */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
}

input:focus {
    outline: none;
    border-color: #ed645d;
}

button {
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: #ed645d;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

button:hover {
    background: #ed645d;
}
