* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    min-height: 100vh;
    background-color: #f2f2f2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    display: flex;
    width: 90%;
    max-width: 380px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

h1 {
    border-bottom-style: solid;
    text-align: center;
    margin-bottom: 25px;
}

label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    color: #555;
}

input {
    width: 100%;
    padding: 11px;
    margin-bottom: 18px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

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

button {
    width: 100%;
    padding: 12px;
    background-color: #d9d9d9;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    margin-bottom: 10px;
}

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

.link {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}

.link a {
    color: #666;
    text-decoration: none;
}

.link a:hover {
    text-decoration: underline;
}

.inscription{
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 12px;
    background-color: #d9d9d9;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    margin-bottom: 10px;
    
}

.inscription a{
    text-decoration:none;
    color: inherit;
}