@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');

* {
    padding: 0;
    margin: 0;
    outline: none;
    box-sizing: border-box;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(180deg, #030829, #0d6570);
    font-family: "Questrial", sans-serif;
}

.wrapper {
    background: linear-gradient(45deg, #f7ac06, #ff416c);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 400px;
}

h1 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #fff;
    text-transform: uppercase;
}

label {
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    margin: 15px 0;
    display: block;
    color: #fff;
}

input,
textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

button {
    width: 100%;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px;
    background: linear-gradient(45deg, #ff416c, #ff4b2b);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

button:hover {
    background: linear-gradient(45deg, #ff4b2b, #ff416c);
}

textarea {
    resize: none;
    cursor: pointer;
}

small {
    font-size: 12px;
    font-weight: 500;
    color: #fff;
}
