*{
	margin:0;
	padding:0;
	box-sizing:border-box;
	font-family: "Poppins", sans-serif;
}

body{
	font-family: "Poppins", sans-serif;
}

p{
	font-weight:200;
	font-family: "Poppins", sans-serif;
	font-size:10px;
}

.home{
	margin-bottom: 0px;
	padding: 0px;
}

.row{
	display:flex;
}

.home-col1 img{
	width: 100%;
	object-fit: cover;
}

.home-col1{
	flex-basis: 55%;
	align-items: center;
}

.home-col{
	flex-basis: 45%;
	align-items: center;
}

.home-col .logo{
	align-items: center;
	margin-top: 40px;
}

.home-col .logo img{
	width: 150px;
	text-align: center;
	align-content: center;
	align-items: center;
	margin-left: 220px;
	margin-top: 10px;
}


.bg{
	background-color: #e6ebf6;
	padding-bottom: 30px;
}






.top-text {
    text-align: center;
    padding: 10px;
    font-size: 15px;
    color: #555;
}

.login-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.toggle-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.toggle-buttons button {
    padding: 12px 20px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.toggle-buttons .inactive {
    background: #fff;
}

.toggle-buttons .active {
    background: #0039a7;
    color: #fff;
}

.login-card {
    background: #fff;
    width: 400px;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.login-card h2 {
    text-align: center;
    margin-bottom: 5px;
    font-size: 18px;
}

.subtitle {
    text-align: center;
    color: #000;
    margin-bottom: 25px;
    font-size: 13px;
    font-weight: 400;
}

label {
    font-weight: 600;
    font-size: 14px;
}

.input-group {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
}

.input-group i {
    margin-right: 10px;
    color: #888;
}

.input-group input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 14px;
}

.options {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.login-btn {
    width: 100%;
    padding: 12px;
    background: #f59e0b;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.login-btn:hover {
    opacity: 0.9;
}

.forgot {
    text-align: right;
    margin-top: 15px;
}

.forgot a {
    color: #1d4ed8;
    text-decoration: none;
}

.signup {
    margin-top: 20px;
    font-size: 14px;
}

.signup a {
    color: #1d4ed8;
    font-weight: 600;
    text-decoration: none;
}


/* Smooth transition */
.input-group {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

/* Focus effect */
.input-group:focus-within {
    border-color: #1d4ed8;
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.2);
}


.password-group {
    position: relative;
}

.toggle-password {
    cursor: pointer;
    color: #888;
    margin-left: 10px;
    transition: 0.2s;
}

.toggle-password:hover {
    color: #1d4ed8;
}




.footer{
	background-color: #0039a7;
	padding-top: 10px;
	padding-bottom: 10px;
}

.footer p{
	color: #fff;
	font-weight: 400;
	font-size: 15px;
	text-align: center;

}




.footer a{
	color: #fff;
	text-decoration: none;
}
.footer a:hover{
	text-decoration: underline;
}














@media only screen and (max-width:600px){


	.row{
		flex-direction:column;
	}


.home-col .logo img{
	width: 150px;
	text-align: center;
	align-content: center;
	align-items: center;
	margin-left: 130px;
}

.home-col1{
	display: none;
}


.home-col1 img{
	width: 100%;
}


}