@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background:#081b29;
    font-family: 'Poppins', sans-serif;
}

.wrapper{
    position:relative;
    /* width:750px;
    height:450px; */
    width: 760px;
    height: 800px;
    background: transparent;
    border:2px solid #0ef;
    /* margin: 0 auto; */
    overflow: hidden;
    box-shadow:0 0 25px #0ef;
}

.form-box{
    color:#fff;
    position: absolute;
    top:0;
    width:50%;
    height:100%;
    display:flex;
    flex-direction: column;
    justify-content: center;

}

.wrapper .form-box h2{
    font-size: 32px;
    text-align: center;
}

.wrapper .form-box .login{
left:0;
padding:0 40px;

}

form{
    margin:0 auto;
}

.input-box{
   position: relative;
   width:100%;
   height:50px;
   /* background: seagreen; */
   margin:25px 0;
}

.white-text {
    color: white;}
    
.input-box input{
    width:100%;
    height:100%;
    background: transparent; 
    outline:none;
    border-left:none;
    border-right:none;
    border-top:none;
    border-bottom:2px solid #fff;
    color:white;
}

.input-box label{
    position:absolute;
    top:50%;
    left:0;
     transform:translateY(-50%); 
    font-size: 16px;
    color:#fff;
    /* transition: -5s; */
}

.input-box input:focus + label,
.input-box input:not(:placeholder-shown) + label {
    top: -15px;
    font-size: 12px;
    color: #0ef;
}

.input-box i{
    position: absolute;
    top:50%;
    right:0;
    transform:translateY(-50%);
    font-size: 18px;
    color:#fff;
}

.btn{
    position:relative;
    width:100%;
    height:45px;
    background:transparent;
    border:2px solid #0ef;
    outline: none;
    border-radius:40px;
    /* cursor:pointer; */
    font-size: 16px;
    color:#fff;
    font-weight: 600;
    z-index: 1;
    overflow: hidden;
}

.btn::before{
    content:"";
    top:-100%;
    left:0;
    position: absolute;
    width:100%;
    height:300%;
    background:linear-gradient(#081b29,#0ef,#081b29,#0ef);
z-index:-1;
transition:.5s;
}



.btn:hover::before{
    top:0;
}
.form-box .logref-link{
    font-size:14.5px;
    color:#fff;
    text-align: center;
    margin:20px 0 10px;
    /* padding:40px 40px; */

}

.logreg-link p a{
    color:#0ef;
    text-decoration: none;
    font-weight: 600;
}

.logreg-link p a:hover{
    text-decoration: underline;
}

.wrapper .info-text {
    position:absolute;
    top:0;
    width:50%;
    height:100%;
    /* background:red; */
    display:flex;
    /* flex-wrap: wrap; */
    justify-content: center;
    flex-direction: column;
}

.info-text.login {
    right:0;
    text-align:right;
    padding: 0  60px  0 150px;


}

.info-text h2{
    font-size: 36px;
    color:#fff;
    line-height: 1.3;
    text-transform:uppercase;
}

.info-text p{
    font:16px;
    color:#fff;
}

.wrapper .bg-animate{
    position: absolute;
    /* top:-40px; */
    top: 27px;
    right:0;
    width:850px;
    height:600px;
    background:linear-gradient(45deg,#081b29,#0ef) ;
transform:rotate(10deg) skewY(40deg);
transform-origin:bottom right;
}


 .wrapper .bg-animate1{
    position: absolute;
    top:100px;
    right:250px;
    width:850px;
    height:700px;
    background:#081b29;
    border-top:3px solid #0ef;
transform:rotate(10deg) skewY(40deg);
transform-origin:bottom right;
} 
/* 
.alert{
    color:green;
} */


.Texthomepage h1{
    color:#fff;
}







/* Styles for the register button */
.register-btn {
    background-color: #007bff;  /* Primary button color */
    color: white;               /* Text color */
    padding: 10px 20px;         /* Padding for the button */
    border: none;               /* Remove default borders */
    border-radius: 4px;         /* Rounded corners */
    font-size: 16px;            /* Adjust font size */
    cursor: pointer;            /* Change cursor on hover */
    transition: background-color 0.3s ease;  /* Smooth transition effect */
}

/* Hover effect */
.register-btn:hover {
    background-color: #0056b3;  /* Darker shade on hover */
}

/* Optional: Add additional focus and active styles */
.register-btn:focus,
.register-btn:active {
    outline: none;              /* Remove the outline */
    box-shadow: 0 0 5px #0056b3;  /* Add a subtle shadow effect on focus */
}
.register-btn:last-of-type {
    display: none;
}