* {
    padding: 0;
    margin: 0;
    outline: none;
    box-sizing: border-box;
    font-family: "Figtree", sans-serif;
    text-decoration: none;
    list-style: none;
}

:root {
    --mainColor: #011165;
    --tertiaryColor: #000360;
    --fourthColor: #020462;
}

body::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #4f1b5c85;
    z-index: -1;
}

img{
    -moz-user-select: -moz-none;
    -ms-user-select: none;
    -webkit-user-select: none;
            user-select: none;
}

.content {
    max-width: 1175px;
    width: 92%;
    margin: auto;
}

.flex {
    display: flex;
}

.flex1 {
    flex: 1;
}

.flexColumn {
    flex-direction: column;
}

.upper {
    text-transform: uppercase;
}

.verdana {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.grid {
    display: grid;
}

.grid3 {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    grid-gap: 20px;
}

.aCenter {
    align-items: center;
}

.jCenter {
    justify-content: center;
}

.spaceBetween {
    justify-content: space-between;
}

.mAuto {
    margin: auto;
    left: 0;
    right: 0;
}

.pointer {
    cursor: pointer;
}

.pAbsolute {
    position: absolute;
}

.pRelative {
    position: relative;
}

.tCenter {
    text-align: center;
}

.lightText {
    color: #fff;
}

.title {
    font-family: "Secular One", sans-serif;
    font-style: normal;
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-size: 48px;
    color: var(--mainColor);
    font-weight: 400;
}

.desktop {
    background-color: #1e293b;
    height: 100%;
    padding: 4rem 7rem;
}

#svg1 {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

#svg2 {
    right: -4rem;    
    top: -4rem;
}

.desktop p {
    color: #94a3b8;
    margin: 20px 0 30px;
}

.desktop img {
    width: 145px;
}

#forms {
    min-height: 100vh;
}

#forms_container {
    width: 397px;
    max-width: 90%;
    margin: auto;
    background-color: #fff;
    padding: 30px 40px 30px 40px;
    border-radius: 10px;
    text-align: center;
}

.logo {
    width: 130px;
    margin-bottom: 25px;
}

#forms_container h2 {
    font-size: 28px;
    line-height: 63px;
}

#forms_container p {
    font-size: 14px;
    margin-bottom: 20px;
}

input[type="text"], input[type="email"], input[type="password"], input[type="date"], input[type="number"] {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0);
    border-style: none;
    background-color: #F2F2FF;
    padding: 16px 16px 16px 24px;
    border-radius: 10px;
    margin-bottom: 22px;
    color: #000;
    font-size: 1rem;
    width: 100%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="checkbox"] {
    position: absolute;
    visibility: hidden;
    width: 1px;
}

input[type="checkbox"] + span {
    display: block;
    width: 16px;
    height: 16px;
    border: 2px solid #64748b;
    border-radius: 2px;
    margin-right: 5px;
}

input[type="checkbox"]:checked + span, input[type="checkbox"] + span:hover {
    background-color: #f4694b;
    border-color: #f4694b;
}

input[type="checkbox"]:checked + span::after {
    content: '\2713';
    color: #fff;
    position: absolute;
    top: -4px;
    left: 1px;
}

.button {
    background-color: #f4694b;
    color: #fff;
    display: block;
    padding: 10px 20px;
    font-weight: 600;
    transition: all ease .25s;
    text-align: center;
    border-radius: 10px;
    padding: 16px 0;
    line-height: 28px;
    margin-top: 20px;
    border: none;
    width: 100%;
    font-size: 16px;
}

.button:hover {
    background-color: #011165;
}

.underlineHover:hover {
    text-decoration: underline;
}

.label {
    color: #1e293b;
    font-weight: 600;
    font-size: 14px;
}

.tagInput {
    margin: 0 auto 20px;
    border-radius: 10px;
    padding: 5px 10px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0);
    border-style: none;
    background-color: #F2F2FF;
    flex-wrap: wrap;
    cursor: text;
    min-height: 46px;
    display: flex;
}

.tagInput input {
    border: none;
    margin: 0 !important;
    padding: 11px 0px 11px 19px !important;
    flex: 1;
    min-width: 50px;
}

.tag {
    background-color: #f4694b;
    color: #fff;
    padding: 10px 28px 10px 18px;
    display: inline-block;
    border-radius: 20px;
    margin: 0 5px 5px 0;
    cursor: default;
}

.deleteTag {
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
}


.options {
    top: 100%;
    max-height: 150px;
    background-color: #fff;
    display: none;
    width: 100%;
    left: 0;
    overflow: auto;
    border-radius: 6px;
    border: 1px solid rgb(203 213 225 / 1);
    border-top: none;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / .05);
    text-align: left;
}

.options::-webkit-scrollbar {
    width: 2px;
}

.options::-webkit-scrollbar-thumb {
    background-color: #f4694b;
}


.options span {
    padding: 10px;
    display: block;
    cursor: pointer;
}

.options span:hover {
    background-color: rgba(0,0,0,.1);
}

#profile_pic img {
    width: 80px;
    height: 80px;
    border-radius: 100%;
    object-fit: cover;
}

#profile_pic img:hover + div {
    display: flex !important;
    top: 0;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    background-color: rgba(0,0,0,.4)
}

@media (max-width: 920px) {
    #login_signup > .flex > div {
        width: 100%;
    }
    .desktop {
        display: none;
    }
    #forms_container {
        margin: auto;
    }
    #forms {
        padding: 70px 0;
    }
}