body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #0098da, #a7d3ff);
}
.login-container {
    display: flex;
    width: 900px;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.info-section {
    flex: 1;
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.icon {
    width: 200px;
    /* height: 100px; */
    /* background: #1E90FF; */
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-bottom: 50px; */
    position: relative;
}
.info-section h1 {
    color: #0098da;
    font-size: 1.8rem;
    margin: 0 0 15px;
}
.info-section p {
    color: #333;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}
.login-section {
    flex: 1;
    background: #0098da;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}
.login-section h2 {
    font-size: 1.8rem;
    margin: 0 0 20px;
}
.login-section p {
    font-size: 0.9rem;
    margin: 0 0 20px;
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 5px;
}
.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    /* background: rgba(255, 255, 255, 0.2); */
    /* color: #fff; */
    font-size: 0.9rem;
}
.form-group input:focus {
    outline: none;
    /* border-color: #fff; */
    /* background: rgba(255, 255, 255, 0.3); */
}
.forgot-password {
    text-align: right;
    font-size: 0.8rem;
    color: #fff;
    margin-bottom: 10px;
}
.forgot-password a {
    color: #fff;
    text-decoration: none;
}
.forgot-password a:hover {
    text-decoration: underline;
}
button.submit-btn {
    width: 100%;
    padding: 12px;
    background: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    color: #0098da;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}
button.submit-btn:hover {
    background: #ddd;
    transform: scale(1.02);
}
@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
        width: 100%;
        height: auto;
    }
    .info-section, .login-section {
        flex: none;
        padding: 20px;
    }
    .info-section{
        display: none;
    }
    .login-section h2{
        font-size: 1.4rem;
        margin-bottom: 5px;
    }
    .login-section p{
        margin-bottom: 10px;
    }
    .form-group{
        margin-bottom: 8px;
    }
    
}