*{
    /* margin:0;
    padding:0; */
    /* box-sizing:border-box; */
    font-family:"poppins",sans-serif;
}
    
.container{
    background-color:black;
    border:2px solid rgb(191, 233, 234);
    width: 600px;
    color: whitesmoke;
    padding:1.5rem;
    margin: 50px auto;
    border-radius:10px;
    box-shadow:0 20px 35px rgba(0,0,1,0.9);
}
form{
    margin:0 2rem;
    background-color:black;
}
.form-title{
    font-size:2.5rem;
    font-weight:bold;
    text-align:center;
    padding:1rem;
    margin-bottom:0.4rem;
    background:transparent;
    color: rgb(189, 231, 247);
}
input{
    color:rgb(247, 220, 246);
    width:100%;
    background:transparent;
    border:none;
    background-color: transparent;
    border-bottom:2px solid #e7dcdc;
    padding: 4px;
    padding-left:2rem;
    font-size:24px;
}
.input-group {
    background:transparent;
    color: rgb(75, 0, 130);
    padding:2% 0;
    position:relative;

}
.input-group i{
    position:absolute;
    padding-top: 16px;
    color:#b9e065;
}
input:focus{
    background:transparent;
    outline:transparent;
    border-bottom:2px solid hsl(327,90%,28%);
}
input::placeholder{
    color:transparent;
    background:transparent;
}
label{
    color:#b1e1db;
    position:relative;
    font-size: 20px;
    left:1.4em;
    top:-1.8em;
    cursor:auto;
    transition:0.3s ease all;
    background:transparent;
}
input:focus~label,input:not(:placeholder-shown)~label{
    top:-3.5em;
    color:hsl(327, 83%, 63%);
    font-size:20px;
    background:transparent;
}
.recover{
    text-align:right;
    font-size:1rem;
    margin-bottom:1rem;

}
.recover a{
    text-decoration:none;
    color:rgb(245, 101, 109);
}
.recover a:hover{
    color:rgb(252, 252, 253);
    text-decoration:underline;
}
/* Event Registration buttons */
.btn{
    font-size: 24px;
    font-weight: bold;
    padding:8px 0;
    border-radius:5px;
    outline:none;
    border:none;
    width:100%;
    background:rgb(125,125,235);
    color:rgb(0, 0, 0);
    cursor:pointer;
    transition:0.9s;
    /* background-color: rgb(84, 242, 242); */
}
.btn:hover{
    background:#a3ed34;
}
.or{
    padding: 5px;
    color: whitesmoke;
}
.links{
    display:flex;
    justify-content:space-around;
    padding:0 rem;
    font-size: 20px;
    margin-top:0.9rem;
    font-weight:bold;
}
/* sign up page */
button{
    color:rgb(182, 245, 100);
    border:none;
    font-size: 20px;
    background-color:transparent;
    font-weight:bold;
}
button:hover{
    text-decoration:underline;
    color:rgb(241, 96, 178);
}
/* Registration page */
.radio-group {
    display: flex;
    color: #b1e1db;
    position:relative;
    font-size: 21px;
    left:1.3em;
    top:0.3em;
    /* padding: 8px; */
    /* margin:16px; */
}
.radio-group i{
    position:absolute;
    color:#b9e065;
    left:-1.35em;
    top:0.2em;
    width: 6px;
}
.radio-group input[type="radio"] {
    margin-left: 20px;
    justify-items: center;
    width: 18px;
    height: 18px;
    /* flex-wrap: wrap; */
    
    /* width: auto; */
}
select.branch{
    color:#b1e1db;
    background:transparent;
    border: 2px solid rgb(166, 189, 189);
    width:220px;
    height:35px;
    margin-left: 20px;
    border-radius:5px;
    box-shadow:0 10px 15px rgba(0,0,1,0.9);
}

@media (max-width: 800px){
    .container{
        width: 600px;
        background-color:black;
    }
    
}
@media (max-width: 700px){
    .container{
        width: 500px;
        background-color:black;
        /* padding:0.rem; */
    }
    .form-title h1{
        font-size:2rem;
    }
    
}
@media (max-width: 500px){
    .container{
        width:400px;
        padding:0.5rem; 
        background-color:black;
    }
    .radio-group a.gen1{
        display: grid;
        grid-template-columns: repeat(4,1fr);
        padding-left:2px;
        padding-top:8px;
        font-size:16px;
        
    }
    .radio-group a.gen2{
        display: grid;
        grid-template-columns: repeat(4,1fr);
        padding-right:24px;
        padding-top:8px;
        font-size:16px;
    }
    .radio-group{
        display: grid;
        grid-template-columns: repeat(3,2fr);
    }
    select.branch {
        font-size: 16px;
        margin-left: 8px;
        margin-top: 3px;;
        width: 180px;
        height: 30px;
    }
    .radio-group input[type="radio"] {
        margin-left: 8px;
        width: 15px;
        height: 15px;
    }
    .form-title{
        font-size: 1.5rem;

    }
    #member0{
        font-size:1.3rem;
    }

}
@media (max-width: 400px){
    .container{
        width: 310px;
        padding:0.5rem;
        background-color:black;
    }
    .or{
        padding:1px;
    }
    .links{
        font-size: 14px;
        padding-bottom: 2px;
    }
    button{
        font-size: 14px;
        padding-bottom: 2px;
    }
    input{
        font-size:20px
    }
    .input-group i{
        padding-top: 12px;
    }
    .form-title{
        font-size: 1.25rem;

    }
    #member0{
        font-size:1.1rem;
    }
    select.branch {
        font-size: 14px;
        margin-left: 5px;
        margin-top: 2px;;
        width: 150px;
        height: 25px;
    }
}