* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --primary-color:#A1E3F9;
    --secondary-color:#1C6EA4;
    --primary-text-color:#ffffff;
    --secondary-text-color:#124f77;
}
body {
    background-color: var(--primary-color);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container {
    width: 600px;
    height: 500px;
    background-color: var(--secondary-color);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
}
h2 {
    color: var(--primary-text-color);
    font-size: 35px;
    margin-bottom: 40px;
}
.inputBox {
    width: 100%;
    height: 30px;
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 20px;
}
input {
    font-size: 15px;
    font-weight: 550;
    background: var(--primary-color);
    border-radius: 5px;
    padding: 15px;
    outline: none;
    border: 1px solid var(--primary-text-color);
    color: var(--secondary-text-color);
}
textarea {
    font-size: 18px;
    font-weight: 550;
    background: var(--primary-color);
    border-radius: 5px;
    padding: 15px;
    outline: none;
    border: 1px solid var(--primary-text-color);
    color: var(--secondary-text-color);
    resize: none;
}
button {
    width: 100%;
    padding: 15px;
    margin-top: 30px;
    background: var(--primary-color);
    outline: none;
    border-radius: 5px;
    border: 1px solid var(--primary-text-color);
    font-weight: bold;
    font-size: large;
    cursor: pointer;
}
button:hover {
    background-color: #a1e3f998;
}