* {
    margin: 0;
    padding: 0;
    font-family: 'poppins', sans-serif;
    box-sizing: border-box;
    overflow: hidden;
    background: #FFFF;
}

.inmobile {
    display: none;
}

a {
    text-decoration: none;
    color: #5a5a5a;
}

img {
    cursor: pointer;
    width: 20px;
    height: 20px;
}

.flex-div {
    display: flex;
    align-items: flex-end;
    align-items: center;
}

nav {
    padding: 10px 2%;
    justify-content: space-between;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    position: sticky;
    background: #FFFF;
    top: 0;
    z-index: 10;
}

.nav-right img {
    width: 20px;
    margin-right: 20px;
    border-radius: 50%;

}

.nav-right .standard-icon {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    margin-right: 15px;
}

@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

button {
    position: relative;
    overflow: hidden;
    transition: background 400ms;
    color: #fff;
    background-color: #6200ee;
    padding: 1rem 2rem;
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    outline: 0;
    border: 0;
    border-radius: 0.25rem;
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.3);
    cursor: pointer;
}




.nav-right .user-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-right: 0;

}

.nav-left .menu-icon {
    width: 22px;
    margin-right: 25px;
}

.nav-left .logo {
    width: 40px;
    height: 40px;
}



.nav-left .search-box h2 {
    font-size: 16px;
    text-align: center;
    color: #2821f2;
}



/* ......................................... index.html..... Main Container......................................*/

.container {
    overflow: auto;
    height: 100vh;
    width: 100%;
    background: #FFFF;
    padding: 50px;

}

.Adcard {
    width: 100%;
    height: 45%;
    border: #5a5a5a;
    box-shadow: #5a5a5a;
    background-color: #F1F2F6;
    border-radius: 10px;
}

.Adcard img {
    height: 100%;
    width: 100%;
}

.divider {
    margin-top: 15px;
    height: 8px;
    background-color: #F1F2F9;
    border: none;
    border-radius: 5px;
}

.Adcard .brandtext {
    font-size: 12px;
    text-align: right;
    color: #2821f2;
    padding: 8px;
    width: auto;
    background-color: #F1F2F9;
}

.registration-process {
    width: 100%;
    height: 60%;
    margin-top: 15px;
    display: flex;

}

.selfregister {
    width: 35%;
    height: 60%;
    margin: 15px;
    box-sizing: border-box;
    border: 2px solid #ddd;
    background-color: rgb(46, 0, 253);
    border-radius: 10px;
}

.selfregister .hsignup {
    font-size: 18px;
    text-align: center;
    text-decoration-color: #F1F2F6;
    padding: 8px;
    width: auto;
}

.selfregister .selfregisterbtn {
    width: 100px;
    height: 100px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    display: block;
    border-radius: 10px;
    padding: 15px;
}

.Class {
    width: 35%;
    height: 60%;
    margin: 15px;
    box-sizing: border-box;
    border: 2px solid #ddd;
    background-color: rgb(253, 0, 0);
    border-radius: 10px;
}

.Class .hsignup {
    font-size: 18px;
    text-align: center;
    text-decoration-color: #F1F2F6;
    padding: 8px;
    width: auto;

}

.Class .classbtn {
    width: 100px;
    height: 100px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    display: block;
    border-radius: 10px;
    padding: 15px;
}

.CopyrightNote {
    padding: 15px;
    text-align: center;
}



/* .......................... signup page ....................*/
.wrapper h2 {
    text-align: center;
}









/* .......................... mobile view ....................*/
@media (max-width : 1000px) {

    .viewbtn {
        color: #FFFF;
        letter-spacing: 1px;
        border: none;
        background: rgb(170, 0, 255);
        cursor: pointer;
        font-size: 18px;
        width: 100%;
        height: 45px;
        border-radius: 5px;
        text-align: center;
    }

    .registration-process {
        display: none;
    }

    .Adcard {
        display: none;
    }

    .divider {
        display: none;
    }

    .inmobile {
        display: block;
    }

    .user-icon {

        display: none;
    }


}