@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600;700&family=Raleway:ital,wght@0,100;0,200;0,300;0,600;1,100;1,200&family=Saira+Condensed:wght@100;200;300;400&display=swap');

:root{
    --green: #ec94ff;
    --lead: #220055;
    --blue: hsl(220, 85%, 57%);
    --violet: #ec94ff;
    --text-white: hsl(0, 0%, 100%);
    --text-light-gray: hsl(0, 0%, 90%);
    --body-bg-color: hsl(203, 67%, 2%);
    --glass-bg-color: hsl(0, 0%, 100%, 0.5);
    --border-color: hsl(0, 0%, 100%, 0.25);
    --blur: blur(10px);
    --botton-hover-color:hsla(0, 0%, 0%, 0.3);

}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: var(--body-bg-color);
    color: var(--text-light-gray);
    font-weight: 300;
    font-family: 'poppins', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    overflow-x: hidden;

}

#particles-js {
    height:100vh;
    width: 100%;
    position: fixed;
    z-index: -1;
}

body::after,
body::before {
    content: '';
    position: fixed;
    height: 400px;
    width: 400px;
    border-radius: 50%;
    z-index: 1;
    filter: blur(150px);
    opacity: 0.5;
}

body::before {
    background-color: var(--blue);
    left:0;
    bottom: 0;
    transform: translate(-50%);
}

body::after {
     background-color: var(--violet);
     right: 0;
     top:0;
     transform: translate(50%);
}

a{
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
}

.gradient-text{
    background: linear-gradient(to right, var(--green), var(--violet));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

}

.form-main{
    min-height: 100vh;
    padding: 60px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    z-index:  99;
}

.form-content{
    width: 100%;
    max-width: 450px;
    position: relative;
    z-index: 1;
}

/**.form-content .circle-1,
.form-content .circle-2,
.form-content .circle-3 {
    position: absolute;
    background: linear-gradient(to right, var(--blue), var(--violet));
    border-radius: 50%;
    z-index:-1;
    
} ***/


.form-content .box1{
    border-color: var(--glass-bg-color);
    border: 1px solid var(--border-color);
    padding: 40px 50px;
    border-radius: 20px;
    backdrop-filter: var(--blur);

} 






.form-content .box1 video {
    display: block;
    height: 35vh;
    width: 100%;
    background-color: transparent;
    border: none;
    color: inherit;
    display: flex;

}
    


.form-content h3{
    font-size: 20px;
    text-align: center;
    line-height: 1.2;
    color: var(--text-white);
    font: 500;
}

.form-content form{
    margin: 25px 0 20px;
     
}

.form-content .input-box {
    margin-bottom: 25x;

}

.form-content ::placeholder{
    color: inherit;
    opacity: 0;
}

.form-content .input-control {
    display: block;
    height: 45px;
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--border-color);
    color: inherit;
    font-weight: inherit;
    font-family: inherit;
    font-size: 16px;


}

.form-content .input-control:focus{
    outline: none;
}

.form-content .input-link {
    margin-top: 10px;
    text-align: right;

}
 
.form-content .btn {
    height: 45px;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    font-family: inherit;
    cursor:  pointer;
    border-radius: 25px;
    user-select: none;
    background: linear-gradient(to right, var(--green), var(--violet));
    border: none;
    color: var(--text-white);
    position: relative;
    z-index: 1;
    overflow: hidden;

}

.form-content .btn a{

    color: var(--text-white) ;
}

.form-content .btn::before {

    content: "";
    position: absolute;
    left: 0;
    top:0;
    height: 100%;
    transition: background-color 0.5s ease;
    z-index: -1;
}


.form-content .btn:hover::before {
     background-color: var(--button-hover-color);

}


.form-content p{
    text-align: center;
}




