@charset "utf-8";

*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    background: #fff;
}

header .top{
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 25px;
    z-index: 99999;
    position: sticky;
    top: 0px;
    left: 0px;
    right: 0px;
}

.logo-cont img{
    width: 70px;
}

.left-cont{
    display: flex;
    margin: 10px;
    align-items: center;
    color: #fff;
}

.icons{
    margin-right: 2px;
}


.form-head{
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.9), rgba(96, 2, 168, 0.99)), url(../img/logo.png);
    /* padding: 100px; */
    background-size: cover;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    /* padding: 25px; */
}

.wel{
    padding: 25px;
    margin-top: 70px;
    /* margin-bottom: 300px; */
}
.wel h2{
    font-size: 35px;
    color: #fff;
    font-weight: 900;
    line-height: 30px;
    width: 60%;
}

.wel p{
    color: #fff;
}

.home{
    background: #8302d9;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
}

.form-cont{
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 30px;
}

.form-det{
    width: 100%;
    max-width: 700px;
    /* background: red; */
    padding: 15px;
}

.form-input-cont input{
    width: 100%;
    padding: 10px;
    border: 1px solid #3c005a;
    border-radius: 5px;
    font-weight: 800;
    color: #3c005a;
    font-size: 18px;
}

.form-input-cont .bio{
    width: 100%;
    padding: 10px;
    border: 1px solid #3c005a;
    border-radius: 5px;
    font-weight: 800;
    color: #3c005a;
    font-size: 18px;
    /* height: 50px; */
}

.form-input-cont select{
    width: 100%;
    padding: 8px;
    border: 1px solid #3c005a;
    border-radius: 5px;
    font-weight: 800;
    color: #3c005a;
}

.form-input-cont button{
    background: #3c005a;
    color: #fff;
    padding: 7px;
    font-size: 18px;
    font-weight: 900;
    border: none;
    width: 100%;
    border-radius: 10px;
    margin-top: 10px;
    /* position: sticky;
    bottom: 0px; */
}

label{
    font-weight: 900;
    color: #3c005a;
}

.form-input-cont{
    margin: 10px 0px;
}

.foot{
    padding: 30px 25px ;
}

.foot-cont{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.icon a{
    color: #3c005a;
    margin: 5px;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #3c005a;
    text-decoration: none;
}

.icon{
    margin-top: 20px;
}


@media (max-width: 480px){
    .wel h2{
        font-size: 25px;
        line-height: 25px;
        width: 100%;
    }
    header .top{
        padding: 10px 7px;
    }

    .foot-cont{
        display: block;
        justify-items: center;
        align-items: center;
    }

    /* .icon{
        margin-top: 20px;
    } */

}