@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,600;1,700&display=swap');

/**** Reset ****/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: none;
    outline: none;
}

/**** Style général de la page ****/

body {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgb(34, 193, 195);
    background: linear-gradient(0deg, rgba(34, 193, 195, 1) 50%, rgba(253, 187, 45, 1) 50%);
    color: #ffffff;
    font-family: "Raleway", sans-serif;
}

header,
footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

header h1 {
    text-align: center;
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 700;
}

.main__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    flex-grow: 1;
    width: 98%;
    max-width: 500px;
    padding: 15px;
}

.container {
    width: 100%;
    padding: 15px;
    background-color: #ffffff;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h2 {
    font-size: 20px;
    font-style: oblique;
    font-weight: 600;
    color: #111111;
    margin-bottom: 15px;
}

form {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

label {
    text-align: left;
    margin-bottom: 8px;
    font-size: 15px;
    color: #111111;
    font-weight: 400;
}

textarea {
    width: 100%;
    height: 400px;
    font-size: 16px;
    padding: 15px 10px;
    border: 1px solid #111111;
    border-radius: 8px;
    line-height: 1.4;
    resize: none;
}

form span {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: #111111;
}

.btn {
    margin: 20px 0;
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 8px;
    background-color: rgba(34, 193, 195, 1);
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.btn:hover {
    background-color: rgba(253, 187, 45, 1);
}

footer span {
    text-align: center;
    font-size: 18px;
    line-height: 1.4;
    font-weight: bold;
}