* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-drag: none;
    scrollbar-width: none;
}

body {
    background-image: linear-gradient(130deg, #df2aff67, #fb891765, #ff49016d, #c121266e, #df2aff60);
    background-size: cover;
    background-position: center;
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

h3 {
    color: rgb(255, 0, 255);
    text-decoration: none;
    font-size: clamp(1.2rem, 2vw, 2rem);
}

input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

#loginDiv {
    width: 60%;
    background-color: rgba(0, 0, 0, 0.697);
    backdrop-filter: blur(8px);
    overflow: hidden;
}

#singupDiv {
    width: 60%;
    height: 85%;
    background-color: rgba(0, 0, 0, 0.697);
    backdrop-filter: blur(8px);
    overflow-y: scroll;
}

#changeDiv {
    width: 60%;
    height: 50%;
    background-color: rgba(0, 0, 0, 0.697);
    backdrop-filter: blur(8px);
}

#forgetPassDiv {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.697);
    backdrop-filter: blur(8px);
}

.my_img_div {
    width: 50%;
    height: clamp(300px, 700px, 1200px);
    overflow: hidden;
    position: absolute;
    top: 0px;
    right: 0px;
    transition: all 0.3s ease;
    cursor: pointer;
    background-image: linear-gradient(130deg, #fb8817, #ff4b01, #c12127, #e02aff);
    box-shadow: 0px 0px 20px rgba(20, 20, 20, 0.427),
        0px 0px 20px rgba(0, 0, 0, 0.427);
    z-index: 99 !important;
}

.my_img_div_inner {
    width: 100%;
    height: 100% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0000006a;
    position: absolute;
    top: 0px;
    left: 0px;
}

.my_img_circle {
    width: 35vw;
    height: 35vw;
    transition: all 0.4s ease;
    display: grid;
    place-items: center;
    background: #000000;
    border-radius: 50%;
    position: relative;
}

.my_img_circle::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    filter: blur(1px);
    background: #000000;
    border-radius: 50%;
}

.my_img_circle::before {
    content: '';
    position: absolute;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    top: -15px;
    left: -15px;
    background: linear-gradient(130deg, #061ce1, #fb003f, #ffb300);
    animation: rotate 2s linear infinite;
    border-radius: 50%;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.my_img_circle img {
    width: 60%;
    filter: drop-shadow(2px 2px 0px #ffffff);
    z-index: 1;
}

.left {
    right: 768px;

    .my_img_circle {
        transform: rotateZ(360deg);
    }
}

#login,
#singUp,
#changeDiv,
#loginPage {
    color: #2d7ffb;
    cursor: pointer;
}

/* Input Design */

.form-control-my {
    position: relative;
    margin: 20px 0 40px;
    min-width: 100%;
}

.form-control-my input {
    background-color: transparent;
    transition: background-color 5000s ease-in-out 0s;
    -webkit-text-fill-color: rgb(191, 0, 255);
    border: 0;
    border-bottom: 3px rgb(237, 140, 244) solid;
    display: block;
    min-width: 100%;
    padding: 12px 0;
    font-size: 17px;
    color: rgb(191, 0, 255);
}

.form-control-my input:focus,
.form-control-my input:valid {
    outline: 0;
    border-bottom-color: rgb(238, 0, 255);
}

.form-control-my label {
    position: absolute;
    top: 15px;
    left: 0;
    pointer-events: none;
}

.form-control-my label span {
    display: inline-block;
    font-size: 18px;
    min-width: 5px;
    color: rgb(237, 140, 244);
    transition: 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.form-control-my input:focus+label span,
.form-control-my input:valid+label span {
    color: rgb(238, 0, 255);
    transform: translateY(-30px);
}

/* button */
.my_btn_login,
.my_btn_singup {
    width: 120px;
    height: 45px;
    border: none;
    border-radius: 10px;
    background: #000;
    color: rgb(238, 0, 255);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center !important;
    overflow: hidden;
    transition: all 0.5s ease;
}

.my_btn_singup {
    width: 140px;
}

.my_btn_login i {
    position: absolute;
    left: -30px;
    transition: all 0.5s ease;
    font-weight: bold;
    transform: scale(0.0);
}

.my_btn_login span {
    position: absolute;
    transition: all 0.3s ease;
    left: 40px;
}


.my_btn_login:hover {
    i {
        left: 25px;
        transform: scale(1.3);
    }

    span {
        left: 55px;
    }
}

.my_btn_singup i {
    position: absolute;
    left: -30px;
    transition: all 0.5s ease;
    font-weight: bold;
    transform: scale(0.0);
}

.my_btn_singup span {
    position: absolute;
    left: 45px;
    transition: all 0.3s ease;
}

.my_btn_singup:hover {
    i {
        left: 30px;
        transform: scale(1.3);
    }

    span {
        left: 60px;
    }
}

.popup-msg-container {
    border-radius: 40px;
    background: #fff0d4;
    position: fixed;
    z-index: 999999;
    top: -100px;
    left: 50%;
    transform: translateX(-50%) scale(0.0);
    box-shadow: 1px 1px 10px rgba(96, 96, 96, 0.326),
        -1px -1px 10px rgba(95, 95, 95, 0.326);
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
    padding: 20px;
    transition: all 0.45s ease;
}

.popup-msg-container span {
    color: rgb(69, 46, 0);
}

.popup-msg-container svg {
    fill: rgb(69, 46, 0);
}

.top {
    top: 40px;
    transform: translateX(-50%) scale(1.1);
}

@media (max-width: 700px) {

    body {
        background-image: linear-gradient(130deg, rgba(223, 42, 255, 0.55), rgba(251, 137, 23, 0.25), rgba(255, 73, 1, 0.25));
        background-size: cover;
        background-position: top center;
        min-height: 100%;
        height: auto;
        padding-top: 40px;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        overflow: auto;
    }

    #loginDiv {
        width: 100%;
        margin-top: 40px;
    }

    #singupDiv {
        width: 100%;
        height: 70%;
        margin-top: 80px;
    }

    #changeDiv {
        width: 100%;
    }

    .my_img_div {
        width: 100%;
        height: 600px;
    }

    .my_img_circle {
        width: 300px;
        height: 300px;
    }

    .left {
        top: 600px;
        left: 0px !important;
        right: 0px;
    }

    .popup-msg-container {
        padding: 15px;
        padding-inline: 20px;
    }

    .popup-msg-container span {
        font-size: 12px;
    }

    .popup-msg-container svg {
        width: 18px;
        height: 18px;
    }

}

@media (min-width: 1280px) and (max-width: 1440px) {

    #loginDiv,
    #singupDiv,
    #changeDiv {
        width: 80%;
    }

    .my_img_div {
        width: 50%;
        height: 800px;
    }

    .my_img_circle {
        width: 400px;
        height: 400px;
    }

    .left {
        top: 0px !important;
        left: unset !important;
        right: 640px;
    }
}