:root {
    --themewhite: #fff;
    --themegrey: #f3f1f1;
    --themeblue: #1c84c6;
    --themelightblue: #f0f7ff;
    --themefontcolor1: #696969;
  }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Josefin Sans", sans-serif;
}

.fade-out {
    animation: fadeOut 4s ease backwards;
}

@keyframes fadeOut {
    from {
        opacity: 0.8;
    }

    to {
        opacity: 1;
    }
}

body{
    background-image: url(./images/bg.png);
}

.nav-div{
    background-color: var(--themewhite);
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    border-bottom: 1px solid lightgray;
}

nav{
    width: 100%;
    height: 9vh;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
}

.nav-div div{
    flex: 1;
    justify-content: space-between;
    align-items: center;
    color: var(--themeblue);
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: capitalize;
}
.nav-div div img{
    object-fit: contain;
    height: 9vh;
}
.nav-div button{
    background-color: var(--themeblue);
    color: white;
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    text-transform: capitalize;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.nav-div button:hover{
    transform: scale(1.1);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}
main {
    width: 100%;
    height: 100vh;
}

.btnone:hover {
    background: #00b894;
    color: white;
}

section .btntwo {
    background: #00b894;
    color: white;
}

.btntwo:hover {
    background: #fff;
    color: #000;
} */

@media (max-width: 768px) {
    #signup-form-wrap {
        width: 80% !important;
    }
}