html {
    overflow: hidden;
}

body {
    background-image: url(socialsync_bg.webp);

}

::selection{
    background-color: #f4b7d7;
    color: white;
}
::-moz-selection{
    background-color: #f4b7d7;
    color: white;
}


.formBody {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60vh;
}

form {
    max-width: 300px;
    background-color: #fff;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

label {
    display: block;
    margin-bottom: 8px;
    color: #2E2E2E;
}

input,
textarea {
    padding: 20px;
    margin-bottom: 16px;
    box-sizing: border-box;
    border: 0px;
    border-radius: 20px;
    transition: 0.2s;
    width: 300px !important;
}

textarea {
    height: 100px !important;
}

input:hover,
textarea:hover {
    background-color: rgb(223, 223, 223);
    transition: 0.2s;
}

input:focus,
textarea:focus {
    outline: 0px;
    background-color: rgb(223, 223, 223);
    transition: 0.2s;
}



button {
    background-color: #ff69b4;
    color: whitesmoke;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.2s;
}

button:hover{
    transition: 0.2s;
    background-color: #df4b95;
}



.topNav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.2rem !important;
    margin: 0 5rem;
}

.topNavLeft {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;
}

.topNavLeft img {
    width: 50%;
    margin-left: 2rem;
}

.topNavEmpty {
    width: 40%;
}

.topNavRight {
    width: 30%;
}

.topNavRight a {
    text-decoration: none;
    color: #2E2E2E;
    font-family: sans-serif;
    font-size: 1.2rem;
    font-weight: 100;
    transition: 0.15s;
}

.topNavRight a:hover {
    border-bottom: 0.14em solid;
    transition: 0.15s;
    cursor: pointer !important;
}

#current {
    border-bottom: 0.16em solid;

}

.rightButtons {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.rightButton a {
    width: 100%;
}
@media screen and (max-width: 1200px) {
    .topNavEmpty, .topNavRight{
        display: none;
    }
    .topNavLeft{
        width: 100%;
    }
    .topNavLeft img{
        width: 200px;
    }

}
@media screen and (max-width: 600px){
    .topNavLeft img{
        width: 120px;
        margin: 0;
    }
}


h1,
h2,
h3,
h4,
h5 {
    font-family: 'Bebas Neue';
}

.heading {
    text-align: center;
    font-size: 3rem;
    padding: 1rem 0;
    color: #2E2E2E;
    margin-top: 2.5rem;
}

.heading h1 {
    margin: 0;
    padding: 0;
}

@media screen and (max-width:600px) {
    .heading{
        font-size: 2rem;
        margin-top: 4.5rem;
    }
    form{
        padding: 2rem;
    }
    input, textarea{
        margin-bottom: 25px;
    }
}
@media screen and (max-width:400px) {
    .heading{
        font-size: 1.6rem;
        margin-top: 6rem;
    }
    form{
        padding: 2rem 1.2rem;
    }
}
