
/* Register Information */


.Register{
    height : 100vh;
    justify-content: center;
    align-items: center;
    display: flex;
    transform : 0.5s ease-in-out;
}

.register-container{
    justify-content: center; 
    align-items: center; 
    transform : 0.5s ease-in-out;
}

.registerform{
    justify-content: center;
    align-items: center;
    border : 3px solid var(--snd-bg-color);
    border-radius : 16px;
    padding : 25px 20px;
    width : 400px;
    height: 700px;
    transform : 0.5s ease-in-out;
}

.registerform h2{
    font-size : 2rem;
    color : var(--snd-bg-color);
    margin-bottom : 20px;
    transform : 0.5s ease-in-out;
}

.registerform div label{
    font-size : 1.5rem;
    color : #555;
}

.newuser{
    font-size : 1.5rem;
    margin-bottom : 20px;
}

.newuser a:hover{
    color : var(--main-color);
    text-decoration : underline;
}

.newuser a{
    color : blue;
}
.input-group{
    position : relative;
    margin-bottom : 20px;
    display : flex;
    gap : 2px;
}

.input-group input{
    border : 1px solid #999;
    border-radius : 5.5px;
    width : 100%;
    height : 50px;
    padding : 0 10px;
    font-size : 1.65rem;
    transform : 0.5s ease-in-out;
}

.input-group input:hover{
    border : 1px solid var(--snd-bg-color); 
}
.input-group label{
    position : absolute;  
    top : 50%;
    left : 10px;
    color : #888;
    font-size : 1.6rem;
    transform : translatey(-50%);
    transition : 0.5s ease-in-out;
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown):valid + label{
    top : -8px;
    left : 8px;
    font-size : 1.4rem;
    color: #28A745;
}

.forgot-password{
    font-size : 1.5rem;
    margin-left : 230px;
    color : #555;
}

.forgot-password:hover{
    color : var(--main-color);
    text-decoration : underline;
}
.register-btn{
    background-color: rgba(255, 255, 255, 0.508);
    border : 1px solid var(--snd-bg-color);
    margin-top : 20px;
    padding : 1rem 1.5rem;
    font-size : 1.65rem;
    width : 100%;
    height : 50px;
    border-radius : 5.5px;
    font-weight : 500;
}
.register-btn:hover{
    color: var(--text-color);
    box-shadow: rgb(1, 0, 34) 0px 0px 5px;
    background : var(--snd-bg-color);
}

.registerform p{
    font-size : 1.5rem;
    margin-top : 45px;
    color : #555;
    text-align : center;
}

.social-register{
    display : flex;
    justify-content : center;
    align-items : center;
    margin-top : 25px;
    gap : 20px;
}

.social-register a{
    font-size : 3.3rem;
    color : var(--snd-bg-color);
    border-radius:60%;
    display : inline-block;
    height: 50px;
    width: 50px;
    line-height: 50px;
}

.social-register #a1:hover{
    transform: scale(1.05) translateX(-5px);
    color: var(--main-color);
}
.social-register #a2:hover{
    transform: scale(1.1);
    color: var(--main-color);
}
.social-register #a3:hover{
    transform: scale(1.05) translateX(5px);
    color: var(--main-color);
}

.input-password{
    display : flex;
    justify-content: center;
    align-items: center;
    border : 1px solid #999;
    border-radius : 5.5px;
    background-color: white;
    width : 50px;

}
#hide{
    width : 30px;
    color : var(--snd-bg-color);
    opacity : 0.8;
}
/* Responsive design */

@media (max-width:991px){
    .registerform{
        margin-top : 70px;
        height: 70%;
    }
}

@media (max-width:618px){
    .registerform{
        margin-bottom : 30px;
        width: 100%;
        border : 3px solid var(--snd-bg-color);

    }   
}

@media (max-width:400px){
    .Register{
        height : 110vh;
    }
    .registerform{
        margin-top : 120px;
        width: 100%;
    } 
    .register-btn button{
        color : var(--snd-bg-color);
    }

}