*{
    font-family: "Montserrat", sans-serif;
}

body{
    display: block;
    margin: 0px;
}

body > img{
    height: 5vh;
    padding-left: 2lvw;
    padding-top: 2lvh;
    padding-bottom: 5vh;
}

.content {
    display: grid;
    width: 80%;
    grid-template-columns: 1.3fr 1fr;
    gap: 10%;
    margin: auto;
    align-items: center;
    margin-top: 10vh;
    height: 100%;
}

.left-content{
    width: 100%;
    overflow: hidden;
}

.left-content img{
    height: 3em;
    margin-bottom: 8vh;
}

.right-container > .title{
    text-align: center;
}

.title{
    font-size: clamp(1.5rem, 3.5vh, 2.8rem);
    font-weight: 700;
    text-transform: uppercase;
    color: #FFFFFF33;
      background: linear-gradient(96.8deg, #ED2763 -3.72%, #6E44FF 83.09%), linear-gradient(0deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
}
.left-content li{
    list-style-type: none;
}
.left-content li b{
    font-size: 1.5em;
}
li > p{
    font-weight: 100;
    margin-top: 0px;
}

h4{
    font-size: 3em;
    font-weight: 500;
    margin-bottom: 8vh;
    width: 100%;
    text-align: center;
}

form{
    display: grid;
    gap: 2em;
    width: 100%;
}

form input{
    background: transparent;
    border: none;
    outline: none;
    border-bottom: 1px solid black;
    height: 3em;
    color: var(--MFPink);
    font-weight: bold;
    width: 100%;
    min-width: 0px;
}

input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0 1000px transparent inset; /* override background */
	-webkit-text-fill-color: #000; /* override text color if needed */
	transition: background-color 100000s ease-in-out 0s; /* prevent transition flash */
	-webkit-text-fill-color: var(--MFPink);
}

form input::placeholder{
    color: black;
    font-weight: 200;
}


form button{
    border-radius: 1rem;
    border: none;
    outline: none;
    background: linear-gradient(90deg, #ED2763, #6E44FF);
    color: white;
    font-weight: bold;
    transition: box-shadow 0.3s ease;
    width: 100%;
    height: 4vw;
    font-size: 1.5em;
    font-weight: 400;
    font-size: clamp(1.2rem, 1.5vw, 100rem);
}

form button:hover {
	box-shadow: 4px 8px 4px rgba(255, 0, 150, 0.4); /* or use var(--MFPink) with opacity */
	cursor: pointer;
}
form h5{
    margin-top: 5vh;
    font-size: 1em;
    font-weight: 500;
}
form#register-form{
    gap: 1em;
}
form select{
    background-color: transparent;
    color: black;
    border: none;
    outline: none;
    border-bottom: 1px solid black;
    height: 3em;
    width: 100%;
    min-width: none;
}

a{
    color: black;
    text-decoration: none;
    text-decoration: underline;
    font-weight: 200;
    font-size: 0.8em;
}


.account-type{
    display: flex;
    width: 100%;
    overflow: hidden;
}

ul{
    color: white;
    padding-left: 0px;
    margin-top: 5vh;
}

.right-container{
    background-color: white;
    border-radius: 1rem;
    padding: 3rem;
    width: calc(100% - 6em);
    height: max-content ;
}

.circles{
    min-height: 100vh;
    width: 100vw;
    position: absolute;
    overflow: hidden;
    z-index: -1;
}

.circle-1 {
    width: 90vw;
    height: 90vw;
    border-radius: 50%;
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 0, 110, 0.45) 0%, rgba(110, 68, 255, 0.3285) 55.77%, rgba(255, 0, 110, 0) 100%);
    position: absolute;
    top: -70%;
    left: -57%;
    z-index: -1;
}

.circle-2{
	position: absolute;
	height: 50vw;
	width: 50vw;
	border-radius: 50%;
	right: 0;
	top: 115%;
	transform: translate(50%, 50%);
    background: radial-gradient(89.79% 89.79% at 88.72% 10.21%, rgba(255, 0, 110, 0.43) 9.62%, rgba(110, 68, 255, 0.2408) 41.14%, rgba(255, 0, 110, 0) 80.88%);
    rotate: -90deg;
    filter: blur(10px);
    z-index: -1;
}

.circle-3{
    position: absolute;
    width: 10vw;
    height: 10vw;
    left: 55%;
    top: 10%;
    transform: translate(50%, 50%);
    border-radius: 50%;
    filter: blur(10px);
    rotate: 180deg;
    background: radial-gradient(89.79% 89.79% at 88.72% 10.21%, rgba(255, 0, 110, 0.5) 9.62%, rgba(110, 68, 255, 0.28) 41.14%, rgba(255, 0, 110, 0) 80.88%);
    z-index: -1;
}

h5{
    margin: 0px;
}

.title.mobile{
    display: none;
}

#error-text{
    color: red;
    font-size: 0.8em;
    height: 1em;
}

.two-column-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 1200px) {
    .content{
        width: 90%;
        grid-template-columns: 1.5fr 1fr;
        margin-top: 0vh;
    }
}

@media (max-width: 800px) {
        html, body {
        margin: 0;
        height: 100%;
        overflow: hidden; /* clip to viewport */
        position: relative; /* establish containing block */
        }
    .circle-3{
        left: 90%;
        height: 20vh;
        width: 20vh;
    }
    .circle-1{
        top: 0;
    }
    .circle-2{
        top: 100%;
    }
    body{
        overflow: none;
    }
    .content{
        grid-template-columns: 1fr;
        width: 90%;
        align-content: space-between;
    }
    .left-content{
        display: none;
    }
    form button{
        height: 6lvh;
    }
    .right-container{
        padding: 1rem 3rem;
    }
    body > img{
        margin: auto;
        display: block;
    }
}