@import url('https://fonts.googleapis.com/css2?family=Hind&family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;1,200&display=swap');

* {
    font-family: 'poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(rgba(24, 33, 68, 0.7), rgba(11, 18, 49, 0.7)), url(../../img/login-img/bg-1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.box {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
}

/* Glass Card Style */
.glass-card {
    background: rgba(255, 255, 255, 0.01);
    box-shadow: 0 0px 0px #9c9c9c00;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid #20bdf69a;
    border-radius: 20px;
    padding: 30px;
    width: 400px;
}

.container {
    width: 100%;
    display: flex;
    flex-direction: column;
}

header {
    color: #fff;
    font-size: 30px;
    display: flex;
    justify-content: center;
    padding: 10px 0 10px 0;
}

.input-box {
    position: relative;
    margin-bottom: 20px;
}

.input-box .input {
    height: 45px;
    width: 100%;
    border: none;
    border-radius: 30px;
    color: #fff;
    font-size: 15px;
    padding: 0 0 0 45px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
}

i {
    position: absolute;
    top: 13px;
    left: 15px;
    color: #fff;
}

::-webkit-input-placeholder {
    color: #fff;
}

.submit {
    border: none;
    border-radius: 30px;
    font-size: 15px;
    height: 45px;
    outline: none;
    width: 100%;
    color: #000;
    background: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: 0.3s;
}

.submit:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.two-col {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: #fff;
    font-size: small;
    margin-top: 10px;
}

label a {
    text-decoration: none;
    color: #fff;
}

.dropdown {
    height: 45px;
    width: 100%;
    border: none;
    border-radius: 30px;
    color: #fff;
    font-size: 15px;
    padding: 0 0 0 15px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    appearance: none;
    /* Removes default dropdown styling */
    -webkit-appearance: none;
    /* Ensures compatibility */
    cursor: pointer;
}

.dropdown:focus {
    outline: none;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.dropdown option {
    background: rgba(24, 33, 68, 0.9);
    /* Dropdown options background */
    color: #fff;
}

.top {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 35px !important;
}

.logo {
    height: 50px;
    /* Keeps the original height */
    max-width: 100%;
    /* Prevents overflow */
    object-fit: contain;
    /* Ensures the logo maintains its aspect ratio */
}


/* footer */
.footer {
	color: #fff;
	font-size: 14px !important;
    font-weight: 400;
    
    p {
    	display: flex;
    	align-items: center;
    }
	
	img {
		width: 70px;
		margin-right: 5px;
	}
}

