@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&family=Roboto:wght@400;700&display=swap');


/* resets */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.hr_line {
    opacity: 60%;
    /* padding: 30px 0px; */
    /* margin: 30px 0px; */
    margin: 0px 100px;

}

:root {
    --primary-text-color: #183b56;
    --secondary-text-color: #577592;
    --accent-color: #2b8763;
    --accent-color-dark: #1e5077;
    --padding-inline-section: 20px;
}

a .btn {
    transition: all 200ms ease;
}


body {
    font-family: "poppins", sans-serif;
    color: var(--primary-text-color);
    height: 100vh;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2rem;
}

h2 {
    font-size: 1.5rem;
}

p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.25rem;
    color: var(--secondary-text-color);
    line-height: 1.8rem;
}

a {
    text-decoration: none;
    display: inline-block;
}

ul {
    list-style: none;
}

/* utility classes */

.small-bold-text {
    font-size: 1rem;
    font-weight: 700;
}

.container {
    max-width: 1280px;
    margin-inline: auto;
    /* padding-inline: var(--padding-inline-section); */

}

.flex {
    display: flex;
    align-items: center;

}

.hover-link {
    color: var(--primary-text-color);
    transition: 0.3s ease-out;

}

.hover-link:hover {
    color: black;
    color: var(--accent-color);
    /* font-size: 16px; */
    /* border-bottom: 3px solid var(--accent-color); */
    /* transition: 0.3s ease-out; */
    /* background-color: var(--accent-color);
    border-radius: 5px; */
}

.primary-button {
    background-color: #1450A3;
    border-radius: 6px;
    font-weight: 700;
    color: white !important;
    padding: 12px 24px;
    box-shadow: 0 0 2px var(--secondary-text-color);
    transition: 0.3s ease-out;
}


.primary-button:hover {
    background: white;
    color: var(--accent-color-dark) !important;

}

.secondary-button {
    border: 0.5px solid var(--secondary-text-color);
    border-radius: 6px;
    font-weight: 700;
    color: var(--primary-text-color);
    padding: 12px 24px;
    transition: 0.3s ease-out;
}

.secondary-button:hover {
    border-color: var(--accent-color);

}



/* top banner */

.top-banner {
    background-color: #2b8764b4;
    background-image: url(./img/asset\ 32.png);
    background-size: 300px;
    height: 30px;



}

.banner-text {
    color: white;
    text-align: center;

}

.self-color p {
    color: #131644;
    margin: 0;
    font-size: 18px;

}


/* nav  bar*/

.main-nav {
    margin-top: 20px;
    justify-content: space-between;
    margin-top: 5px;

}

.blue {
    color: #4285F4;
}

.red {
    color: #DB4437;
}

.yellow {
    color: #F4B400;
}

.green {
    color: #0F9D58;
}

.acme_bold {
    font-size: 75px !important;
    /* background-image: url(https://www.shutterstock.com/blog/wp-content/uploads/sites/5/2018/05/Gradient-Round-Up-Featured-Image.jpg?w=960&h=600&crop=1);
    border-radius: 15px; */
    /* color: #F3FDE8; */
}


.company-logo img {

    height: 70px;
    border-radius: 12px;
    /* border: 0.5px solid var(--accent-color-dark); */
    filter: brightness(120%);
    filter: contrast(120%);
    /* filter: drop-shadow(10px 10px 10px black); */
    filter: drop-shadow(0px 1px 4px black);
}



.nav-links {
    flex-basis: 7300px;

    /* background-color: yellow; */
}

.Home {
    color: #2b8763;
}

.nav-links ul {
    justify-content: end;
    gap: 40px
}

/* application form section */

.wrapper {
    width: 700px;
    height: 750px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .2);
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    color: rgb(0, 0, 0);
    border-radius: 10px;
    padding: 63px 44px;
    /* padding-left: 400px; */

}


.wrapper h1 {
    font-size: 36px;
    text-align: center;
}

.wrapper .input-box {
    /* display: inline-block; */
    position: relative;
    width: 90%;
    height: 50px;
    /* padding-left:50px ; */
    margin-left: 30px;
    /* text-align: center;
    justify-content: center; */
    margin-top: 30px;
    margin-bottom: 30px;
}

.input-box input {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 40px;
    font-size: 16px;
    color: black;
    padding: 17px 8px 12px 28px;
}

.input-box input::placeholder {
    color: rgb(0, 0, 0);
}

.input-box i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

.wrapper .remember-forget {
    display: flex;
    justify-content: space-between;
    font-size: 14.5px;
    margin: -15px 0 15px;
}

.remember-forget label input {
    accent-color: black;
    margin-right: 3px;
    margin-top: 20px;
    margin-left: 20px;
}

.remember-forget a {
    color: black;
    text-decoration: none;
}

.termsconditions:hover {
    text-decoration: underline;
}

.wrapper .btn {
    background-color: #2b8763;
    border-radius: 40px;
    font-weight: 700;
    color: rgb(255, 255, 255) !important;
    padding: 13px 52px;
    box-shadow: 0 0 2px var(--secondary-text-color);
    transition: 0.3s ease-out;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 16px;
    align-items: center;
    margin-left: 135.5%;
    margin-top: 10%;
    /* top: 200px; */
    justify-content: space-between;
}

.wrapper .red-btn {
    background-color: #d21212e7;
    border-radius: 40px;
    font-weight: 700;
    color: rgb(255, 255, 255) !important;
    padding: 13px 52px;
    box-shadow: 0 0 2px var(--secondary-text-color);
    transition: 0.3s ease-out;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 16px;
    align-items: center;
    margin-left: 70.5%;
    justify-content: space-between;
    margin-top: 20px;
    margin-bottom: 25px;
}

.wrapper .red-btn:hover{
    background-color: white;
    color: #d21212e7 !important;
}

.wrapper .btn:hover {
    background: whitesmoke;
    color: #2b8763 !important;

}

.wrapper .register-link {
    font-size: 14.5px;
    text-align: center;
    margin: 20px 0 15px;
}

.register-link a {
    text-decoration: none;
    color: #2b8763;
}

.register-link a:hover {
    text-decoration: underline;
}


.register-link p a {
    color: black;
    text-decoration: none;
    font-weight: 700;
}

.register-link p a:hover {
    text-decoration: underline;

}

.body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 30vh;
    /* background: url(./img/register.png);
    background-repeat: no-repeat; */
    background-size: contain;
    background-position: left;
    padding-left: 30px;


}

.input-section {
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
    border-radius: 10px;
    height: 20px;
    margin-left: -30px;

}

.input-section label {
    margin: 0 30px;

}

.input-section #course {
    height: 30px;
    text-align: left;

}

.input-radio {
    margin: 30px 0;
    text-align: center;
}
.dob_gpa{
    padding: 0px !important;
    /* justify-content: center; */
    /* margin-left: 20px; */
    left: 5px;
    /* width: 40%; */


}

.dob_gpa input{
    display: inline-block;
    font-family: 'poppins', sans-serif;
    width: 49% !important;
    /* align-items: center; */
    /* text-align: center; */
    

}
.dob-gpa input{
    display: inline-block;
    font-family: 'poppins', sans-serif;
    width: 30% !important;
    /* margin-left: 20px; */

}

.termsconditions{
    color: blue;
}

select option {
    font-family: 'poppins', sans-serif;
}