*,
::after,
::before {
    box-sizing: border-box;
}

:root {
    --text-color: #fff;
}

html {
    font-size: 62.5%;
}

body {
    font-size: 1.6rem;
    font-family: "Play", "Arial", "Helvetica", sans-serif;
    color: var(--text-color);
    font-weight: 400;
}

/* Common Class */
main {
    overflow: hidden;
}

form,
input,
button,
textarea {
    font-size: inherit;
    font-family: inherit;
    color: inherit;
    font-weight: inherit;
}

label {
    display: inline;
}

textarea {
    resize: none;
}

.btn {
    background: linear-gradient(#1e0044, #1e0044) padding-box,
        linear-gradient(to right, #383fec, #23ffff) border-box;
    border-radius: 10px;
    border: 1px solid transparent;
    margin: 0 auto;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    gap: 10px;
}
