:root {
    --dark-1: #121212;
    --dark-2: #000000;
    --dark-3: #1a1a1a;
    --light-1: #e0e0e0;
    --light-2: #b0b0b0;
    --primaire: #c9a769;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #000000;
    background-image: url("https://www.transparenttextures.com/patterns/asfalt-light.png");
    display: flex;
    justify-content: center;
    padding: 50px;
    flex-direction: column;
    align-items: center;
}

form {
    background: #000000;
    padding: 2rem;
    border-radius: 10px;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 4px 10px #f9f9f95f;
}

h1,
h2 {
    margin-bottom: 1rem;
    text-align: center;
    color: #fff;
}

img {
    display: block;
    margin: 0 auto;
    width: 50%;
    height: auto;
    margin-bottom: 1rem;
    text-align: center;
}

label {
    display: block;
    margin-top: 1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

input,
select,
textarea {
    width: 100%;
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

button {
    margin-top: 1.5rem;
    width: 100%;
    background: transparent;
    border: 3px solid #c9a769;
    color: #fff;
    padding: 1rem;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
}

button:hover {
    background: #c9a769;
}


.return-link {
    text-align: center;
    margin-top: 20px;
}

.return-link a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

.return-link a:hover {
    text-decoration: none;
    transform: scale(0.7);
}