*{
    box-sizing: border-box;

}

::selection {
    background-color: #fD05A0;
    color: rgb(0, 0, 0);
}
.input-box {
    border:4px solid #fec629;
    padding: 1vw 2vw;
    background-color: #fec52942;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

h1 {
    font-size: 36px;
    font-family: "Parkinsans", sans-serif;
    color: rgb(50, 166, 277);
}
h3 {
    font-size: 24px;
    font-family:"Share Tech", sans-serif;
    color: rgb(1, 29, 94);
}

label {
    font-size: 20PX;
    font-family:"Share Tech", sans-serif;
}
input
{
    border-color: #fec529;
    background-color: #fec52942;
    outline: none;
    border-style: solid;
}
select:not(:-internal-list-box) {
        border-color: #fec529;
    background-color: #fec52942;
    outline: none;
    border-style: solid;
}

input[type="file"] {
    border-color: #fec529;
    background-color: #fec52942;
    outline: none;
    border-style: solid;
}

input:focus {
    border-color: #fD05A0;
    border-style: solid;
    background-color: #fd059e3b;
    outline: none;
}
.input-box .input {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
}

