body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}
.login-container {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
    max-width: 900px;
    width: 90%;
    display: flex;
    flex-direction: column;
}
.logo-container {
    background-color: antiquewhite;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    margin: 20px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.logo {
    margin-top: 10px;
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}
.info-side {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.subtitle {
    font-size: 1rem;
    opacity: 0.8;
}
.form-side {
    padding: 40px;
}
.form-content {
    max-width: 300px;
    margin: 0 auto;
}
.input-group-text {
    background-color: #f8f9fa;
    border: none;
    color: #6c757d;
}
.form-control, .form-select {
    border: none;
    border-bottom: 2px solid #ced4da;
    border-radius: 0;
    padding: 10px 5px;
}
.form-control:focus, .form-select:focus {
    box-shadow: none;
    border-color: #6e8efb;
}
.btn-primary {
    background-color: #6e8efb;
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background-color: #5c7cfa;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(110, 142, 251, 0.4);
}
.footer {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    font-size: 0.9rem;
}
@media (max-width: 767.98px) {
    .login-container {
        flex-direction: column;
    }
    .info-side, .form-side {
        width: 100%;
    }
}