@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900%display=swap');
/*form for members content*/
*
{
    font-family: 'Poppins', 'sans-serif';
	 box-sizing: border-box;
   
    

}

body{
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #23242a;
}

.box2 {
    position: relative;
    width: 380px;
    height: 420px;
    border-radius: 8px;
    background: #1c1c1c;
    overflow: hidden;
	 margin-left:auto;
	 margin-right:auto;
	 margin-bottom:150px;
	  
}

.box2::before{
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 380px;
    height: 420px;
    background: linear-gradient(0deg, transparent, 
    #bf9e32, #bf9e32);
    transform-origin: bottom right;
    animation: animate 6s linear infinite;
}

.box2::after{
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 380px;
    height: 420px;
    background: linear-gradient(0deg, transparent, 
    #bf9e32, #bf9e32);
    transform-origin: bottom right;
    animation: animate 6s linear infinite;
    animation-delay: -3s;
}

@keyframes animate {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}

.form2 {
    position: absolute;
    inset: 2px;
    border-radius: 8px;
    background: #28292d;
    z-index: 10;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;

}
.form2 h2 {
    color: #bf9e32;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0,1em;

}

.inputBox2{
    position: relative;
    width: 300px;
    margin-top: 35px;

}
.inputBox2 input {
    position: relative;
    width: 100%;
    padding: 10px 9px 10px;
    background: #ffffff;
    border: none;
    outline: none;
    color: #23242a;
    font-size: 1em;
    letter-spacing: 0.05em;
    z-index: 10;
}

.inputBox2 span{
    position: absolute;
    left: 0;
    padding: 10px 10px 10px;
    font-size: 1em;
    color: #8f8f8f;
    pointer-events: none;
    letter-spacing: 0.05em;
    transition: 0.5s;
}

.inputBox2 input:valid ~ span, 
.inputBox2 input:focus ~ span  {
    color: #bf9e32;
    transform: translateX(0px) translateY(-34px);
    font-size: 0.75em;

}

.inputBox2 i {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #bf9e32;
    border-radius: 4px;
    transition: 0.5s;
    pointer-events: none;
    z-index: 9;
}

.inputBox input:valid ~ i, 
.inputBox input:focus ~ i {
    height: 44px;

}

.links2 {
    display: flex;
    justify-content: space-between;

}

.links2 a {
    margin: 10px 0;
    font-size: 00.8em;
    color: #8f8f8f;
    text-decoration: none;
}

.links2 a:hover,
.links2 a:nth-child(2)
 {
    color: #bf9e32;

}
input[type='submit'] {
    border: none;
    outline: none;
    background: #bf9e32;
    padding: 15px 25px;
    width: 100px;
    margin-top: 10px;
    border-radius: 5px;
	 font-weight: 400;
    
	 font-size:20px;
    cursor: pointer;
}

input[type='submit']:active {
    opacity: 0.8;
}

.new-member-link{
  text-decoration-line: none;
}