@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Turret+Road:wght@200;300;400;500;700;800&display=swap');

* {
    box-sizing: border-box;
}

body {
    background: linear-gradient(to right, #ca0df0, #494304, #fbdf3c);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: 'Poppins';
    height: 100vh;
    margin: -20px 0 50px;
}

.logo-link {
    display: flex;
    align-items: left;
    text-decoration: none;
    gap: 10px;
}

.logo-svg {
    width: 40px;
    height: 40px;

}

.logo-text {
    font-family: 'Orbitron', monospace;
    text-align: left;
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(45deg, #FF5E00, #00B2FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 2s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 94, 0, 0.5);
}

@keyframes glow {

    0%,
    100% {
        filter: brightness(1);
        text-shadow: 0 0 30px rgba(255, 94, 0, 0.5);
    }

    50% {
        filter: brightness(1.5);
        text-shadow: 0 0 40px rgba(255, 94, 0, 0.8);
    }
}

h1 {
    font-weight: 600;
    margin: 0;
}

h2 {
    text-align: center;
    color: #ffffff;
}

p {
    font-size: .85rem;
    font-weight: 200;
    line-height: 1.25rem;
    letter-spacing: 0.5px;
    margin: 50px 0 30px;
}

span {
    font-size: .75rem;
}

a {
    color: #fafafa;
    font-size: .85rem;
    text-decoration: navajowhite;
    margin: 20px 0;
}

button {
    border-radius: 50px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border: 1px solid #654505;
    background: linear-gradient(90deg, #f7610b, #0cff51);
    color: #fefefe;
    font-size: .75rem;
    font-weight: 500;
    padding: 0.75rem 2.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all .25s ease-in;
    -webkit-transition: all .25s ease-in;
    -moz-transition: all .25s ease-in;
    -ms-transition: all .25s ease-in;
    -o-transition: all .25s ease-in;
    cursor: pointer;
}

button:hover {
    background: linear-gradient(90deg, #FF5E00, #00B2FF);
}

button:active {
    transform: scale(.95);
    -webkit-transform: scale(.95rem);
    -moz-transform: scale(.95);
    -ms-transform: scale(.95);
    -o-transform: scale(.95);
}

button:focus {
    outline: none;
}

button.ghost {
    border-color: #f4f0f0;
}

form {
    background-color: #043c0c;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 50px;
    height: 99%;
    text-align: center;
    border: solid;
    border-radius: 50px;
}

input {
    background-color: #fcfcfc;
    border: solid;
    border-radius: 8px;
    padding: 12px 15px;
    margin: 8px 0;
    width: 100%;
    box-shadow: 0px 2px 4px 0px #d2f1e1;
}

.container {
    background-color: #050101;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    box-shadow: 0 14px 28px rgb(255, 255, 255), 0 10px 10px rgba(246, 246, 246, 0.975);
    position: relative;
    overflow: hidden;
    width: 900px;
    max-width: 714px;
    min-height: 500px;
    color: #f6f6f6;
}

.form-container {
    position: absolute;
    overflow: hidden;
    top: 0;
    height: 100%;
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
}

.login-container {
    left: 0%;
    width: 50%;
    z-index: 2;
}

.container.right-panel-active .login-container {
    transform: translateX(100%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    background-color: #45f3ff;
}

.signup-container {
    left: 0;
    width: 50%;
    opacity: 0;
    z-index: 1;
}

.container.right-panel-active .signup-container {
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    opacity: 1;
    z-index: 5;
    animation: show .5s;
    -webkit-animation: show .5s;
}

.social-container {
    margin: 10px 0;
}

.social-container a {
    border: 1px solid #b8fbcc;
    border-radius: 0%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 20px;
    height: 50px;
    width: 50px;
}

@keyframes show {

    0%,
    49.99% {
        opacity: 0;
        z-index: 1;
    }

    50%,
    100% {
        opacity: 1;
        z-index: 5;
    }
}

.overlay-container {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    z-index: 100;
}

.container.right-panel-active .overlay-container {
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
}

.overlay {
    background: linear-gradient(to right, #0f0475, #010000, #031052);
    background-size: contain;
    background-position: 0 0;
    color: #fefbfb;
    position: relative;
    left: -100%;
    height: 100%;
    width: 200%;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transition: transform .5s ease-in-out;
    -webkit-transition: transform .5s ease-in-out;
    -moz-transition: transform .5s ease-in-out;
    -ms-transition: transform .5s ease-in-out;
    -o-transition: transform .5s ease-in-out;
}

.container.right-panel-active .overlay {
    transform: translateX(50%);
    -webkit-transform: translateX(50%);
    -moz-transform: translateX(50%);
    -ms-transform: translateX(50%);
    -o-transform: translateX(50%);
}

.overlay-panel {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 50px;
    text-align: center;
    top: 0;
    height: 100%;
    width: 50%;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transition: transform .5s ease-in-out;
    -webkit-transition: transform .5s ease-in-out;
    -moz-transition: transform .5s ease-in-out;
    -ms-transition: transform .5s ease-in-out;
    -o-transition: transform .5s ease-in-out;
}

.overlay-left {
    transform: translateX(-20%);
    -webkit-transform: translateX(-20%);
    -moz-transform: translateX(-20%);
    -ms-transform: translateX(-20%);
    -o-transform: translateX(-20%);
}

.container.right-panel-active .overlay-left {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
}

.overlay-right {
    right: 0;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
}

.container.right-panel-active .overlay-right {
    transform: translateX(20%);
    -webkit-transform: translateX(20%);
    -moz-transform: translateX(20%);
    -ms-transform: translateX(20%);
    -o-transform: translateX(20%);
}

@media(max-width: 730px) {
    h2 {
        font-size: 1.2rem;
    }
}



.custom-select {
    box-shadow: 0px 2px 4px 0px #83ecb6;
    width: 760px;
    max-width: 100%;
    min-height: 45px;
    margin-top: 50px;
    margin-bottom: 10px;
    border: #465804;
    border: solid;
    border-radius: 8px;

}

/* box border css*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;

}

.box {
    position: relative;
    width: 800px;
    height: 600px;
    background: #f89797;
    border-radius: 8px;
    overflow: hidden;
    padding: 100px;
}

.box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 380px;
    height: 420px;
    z-index: 1;
    transform-origin: bottom right;
    animation: animate 6s linear infinite;
}

.box::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 380px;
    height: 420px;
    background: linear-gradient(0deg, transparent, transparent, #45f3ff, #45f3ff, #45f3ff);
    z-index: 1;
    transform-origin: bottom right;
    animation: animate 6s linear infinite;
    animation-delay: -3s;
}

.borderLine::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 400px;
    height: 600px;
    background: linear-gradient(0deg, transparent, transparent, #9aff27, #2739ff, #fff127);
    z-index: 1;
    transform-origin: bottom right;
    animation: animate 6s linear infinite;
    animation-delay: -1.5s;
}

.borderLine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 600px;
    height: 500px;
    background: linear-gradient(0deg, transparent, transparent, #ff2770, #ff2770, #ff2770);
    z-index: 1;
    transform-origin: bottom right;
    animation: animate 6s linear infinite;
    animation-delay: -4.5s;
}


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

    100% {
        transform: rotate(360deg);
    }

}

.box form {
    position: absolute;
    inset: 4px;
    padding: 50px 40px;
    border-radius: 8px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    background-color: #ff0101;
}

.service {
    background-image: url('/Users/shilpajoshi/Downloads/login-back image.png');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% 100%;
    position: fixed;
 background: linear-gradient(150deg, #360f5c,#0f3f0b, #5e6a04,#4d0d0c,#430202,#c29504);
  background-size: 400% 100%;
  animation: BackgroundGradient 15s ease infinite;
}


@keyframes BackgroundGradient {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}


.shilpanews {
    color: #f2f2f2;
    background-color: transparent;
    margin-bottom: 50px;


}

/* login navbar */
.login-navbar {
    background-color: white;
    box-sizing: border-box;

    text-align: left;
    width: 1650px;
    height: 10px;




}


.contact-brand {
    background-color: transparent;
    box-sizing: border-box;
    text-align: right;
    margin-top: 10px;
    margin-left: 550px;


}.contact-brand a {
    color: black;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    margin-left: 20px;
    font-family: 'Poppins', sans-serif;

}