:root {
    --White: hsl(0, 0%, 100%);
    --Light-Grey: hsl(217, 12%, 63%);
    --Dark-Blue: hsl(213, 19%, 18%);
    --Very-Dark-Blue: hsl(216, 12%, 8%);
    --Orange: hsl(25, 97%, 53%);
}

@font-face {
    font-family: Regular;
    src: url(Regular.ttf);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    display: flex;
    width: 100%;
    height: 100vh;
    background-color: var(--Very-Dark-Blue);
    font-family: Regular;
    color: white;
    justify-content: center;
    align-items: center;
}

.hero-section {
    background-color: var(--Dark-Blue);
    width: 315px;
    padding: 20px;
    border-radius: 10px;
}

h4{
    font-size: 1.2rem;
    margin-bottom: 15px;
}

p {
    font-size: 0.8rem;
    color: var(--Light-Grey);
    margin-bottom: 20px;
}

img {
    background-color: rgb(40, 51, 54);
    padding: 7px;
    border-radius: 100%;
    margin-bottom: 20px;
}

form {
    width: 100%;
}

.form{
    display: flex;
    gap: 20px;
}

.form input{
    padding: 10px;
    color: var(--Light-Grey);
    border-radius: 100%;
    border: none;
    background-color: rgb(40, 51, 54);
    box-shadow: 0 0 0.5px 0px var(--Very-Dark-Blue);
    width: 40px;
    font-weight: bold;
    margin-bottom: 20px;
    font-family: Regular;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form input:hover{
    background-color: var(--Orange);
    color: var(--Dark-Blue);
    transition: all 0.3s ease;
}

.form input.active {
    background-color: white;
    color: var(--Dark-Blue);
}

#submit {
    background-color: var(--Orange);
    border: none;
    font: 1rem Regular;
    padding: 10px;
    width: 100%;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

#submit:hover {
    background-color: white;
    transition: all 0.3s ease;
}