.form-top-sect {
    margin: 1rem;
    margin-top: 15vh;
    text-align: center;
}

.form-title {
    font-family: 'Zilla Slab', serif;
    font-weight: bold;
    color: #000000;
    font-size: 42px;
    padding: 2rem;
}

.form-location {
    font-family: 'Poppins', sans-serif;
    font-weight: normal;
    color: #28E2FD;
    font-size: 24px;
}

.statusMsg {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    color: #000000;
    font-size: 32px;
}

form {
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

label {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    color: #000000;
    font-size: 24px;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=url] {
    width: 100%;
    height: 4rem;
    padding-left: 1rem;
    background: #FFFFFF;
    border: 1px solid #000000;
    color: #000000;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
}

::placeholder {
    color: #000000;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
}

.drop-zone {
    width: 15rem;
    height: 15rem;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 20px;
    cursor: pointer;
    color: #cccccc;
    border: 1px dashed #000000;
    border-radius: 10px;
}

.drop-zone--over {
    border-style: solid;
}

.drop-zone__input {
    display: none;
}

.drop-zone__thumb {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    background-color: #cccccc;
    background-size: cover;
    position: relative;
}

.drop-zone__thumb::after {
    content: attr(data-label);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5px 0;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.75);
    font-size: 14px;
    text-align: center;
}

input[type=checkbox] {
    width: 1rem;
    height: 1rem;
    background: #FFFFFF;
    border: 1px solid #000000;
    margin-top: 1rem;
    margin-right: 0.5rem;
}

.policy {
    font-family: 'Poppins', sans-serif;
    font-weight: normal;
    color: #000000;
    font-size: 18px;
}

.policy>.span {
    font-weight: bold;
    cursor: pointer;
}

.policy>.span:hover {
    text-decoration: underline;
}

.span-star,
.mand-fields {
    color: #FF0000;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
}

input[type=submit] {
    text-align: center;
    background: #28E2FD;
    border: none;
    width: 10rem;
    height: 2.5rem;
    color: #FFFFFF;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    display: block;
    margin: auto;
    margin-top: 2rem;
    margin-bottom: 2rem;
    border-radius: 50rem;
}

@media only screen and (max-width: 300px) {
    .drop-zone {
        width: 100%;
    }
}