*{
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding:0;
    scroll-padding-top: 2rem;
    scroll-behavior: smooth;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

.full-page{
    width: 100vw;
    height: 100vh;
    background-color: #ecedfa;
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: auto;
}
.image{ 
    text-align: center;
}

h1{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    text-align: center;
    color: black;
}
p{
    text-align: center;
    margin-top: 20px;
    color: black;
}
p.student-login {
    position: relative; 
}

p.student-login::before,
p.student-login::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background-color: black;
}

p.student-login::before {
    left: 50px;
    transform: translateX(-50%);
}

p.student-login::after {
    right: 50px;
    transform: translateX(50%);
}

.underline-me {
    position: absolute;
    margin-left: 20%;
    font-size: 12px;
    margin-top: -20px !important;
    text-decoration: underline;
    color: #6863be;
}

.button-box {
	width: 72%;
    background-color: #6863be;
    margin: 2em;
    display: flex;
    justify-content: space-between;
    position: relative;
    border-radius: 50px ;
    margin-left: 60px;
}

.toggle-btn {
	padding: 10px 40px;
	cursor: pointer;
	background: transparent;
	border: 0;
	outline: none;
	position: relative;
	text-align: center;
}

#btn {
	position: absolute;
    width: 50%;
    height: 90%;
    margin: 2px;
    border: none;
    outline: none;
    border-radius: 50px;
    background-color: #ecedfa;
    font-size: 0.8em;
    font-weight: 600;
    transform: translateX(0);
    transition: all 0.2s ease-in-out;
}

.rightBtn{
    transform: translateX(98%);
    transition: all 0.2s ease-in-out;
}

.login-page {
    background-color: #fff; 
    box-shadow: rgba(2, 75, 243, 0.15) 0px 2px 8px;
    border-radius: 5px;
    width: 400px;
    padding: 20px;
}


.form-box {
    padding: 20px;
}

.toggle-btn {
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
}

.input-field, .check-box {
    width: 90%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #6863be;
    background-color: #ecedfa;
    border-radius: 50px;
    font-weight: 500;
    margin-left: 20px;
}

.submit-btn {
    width: 150px;
    padding: 1em;
    margin: 2em 0;
    border-radius: 50px;
    border: none;
    outline: none;
    background-color: #6863be;
    color: #fff;
    cursor: pointer;
    font-size: 0.8em;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    margin-left: 110px;
}

.submit-btn:hover {
    background-color: #0056b3;
}

.check-box + span {
    display: inline-block;
    margin-left: 15px;
    color: black;
    font-size: 12px; 
}
.check-box {
    width: 15px; 
    height: 15px; 
    background-color: #fff;
    border-radius: 3px; 
    vertical-align: middle;
    margin-top: 10px;
}

.check-box + span + span {
    font-size: 14px;
    display: block;
    margin-top: 2px;
    margin-left: 20%;
}

