* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /*font-family: Arial, sans-serif;*/
	font-family: Century Gothic;
}
body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4f4f4;
    padding: 20px;
}
.container {
    display: flex;
    background: white;
    box-shadow: 0px 0px 10px rgba(219, 206, 206, 0.1);
    border-radius: 10px;
    overflow: hidden;
    width: 650px;
    height: 480px;
}
.image-section {
    flex: 1;
    background: url('../img/login/login5.jpg') no-repeat center center;
    background-size: cover;
}
.form-section {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
h2 {
    margin-bottom: 20px;
    text-align: center;
    font-size: 20px;
}

h4{
    margin-bottom: 20px;
    text-align: center;
    font-size: 15px;
    font-weight: normal;
}

.input-group {
    margin-bottom: 15px;
}
.input-group label {
    display: block;
    margin-bottom: 5px;
}
.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.forgot-password {
    display: block;
    text-align: center;
    margin-bottom: 15px;
    color: #007BFF;
    font-size: 15px;
    text-decoration: none;
}
.forgot-password:hover {
    text-decoration: underline;
}
.btn {
    width: 100%;
    padding: 12px;
    /*background: #007BFF;*/
    background: #000080;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s;
	font-size: 16px;
}
.btn:hover {
    background: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        width: 90%;
        height: auto;
    }
    .image-section {
        height: 200px;
    }
    .form-section {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .form-section {
        padding: 20px;
    }
    .input-group input {
        padding: 10px;
    }
    .btn {
        padding: 10px;
    }
}



