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

body {
    background-color: #f4f4f4;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.page-container {
    width: 80%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-container {
    display: flex;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    margin-bottom: 20px;
}

.login-section {
    flex: 1;
    padding: 30px;
}

.info-section {
    flex: 1;
    padding: 30px;
    background-color: #f9f9f9;
    border-left: 1px solid #e0e0e0;
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.logo {
    width: 120px;
    height: auto;
    margin-bottom: 15px;
}

h1 {
    color: #2c3e50;
    font-size: 24px;
    margin-bottom: 20px;
}

.login-form {
    margin-bottom: 30px;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
    width: 80%;
    left: 10%;
}

.input-group i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #7f8c8d;
}

.input-group input {
    width: 100%;
    padding: 10px 10px 10px 35px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.remember-me {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.remember-me input {
    margin-right: 10px;
}

.login-btn {
    width: 100%;
    background-color: #3498db;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-btn:hover {
    background-color: #2980b9;
}

.forgot-password {
    text-align: center;
    margin-top: 20px;
}

.forgot-password a {
    color: #3498db;
    text-decoration: none;
}

.info-section h2 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #2c3e50;
    text-decoration: none;
}

.info-section ul {
    list-style-type: none;
    margin: 30px 0;
}

.info-section li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: #3498db;
}

.info-section li i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.help-section h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.help-section p {
    color: #2c3e50;
    margin-bottom: 15px;
}

.support-btn {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 10px 15px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.support-btn:hover {
    background-color: #2980b9;
}

.error-notification, .success-notification {
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.error-notification {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.success-notification {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-notification.show, .success-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.error-notification i, .success-notification i {
    margin-right: 10px;
    font-size: 18px;
}

.error-notification i {
    margin-right: 10px;
    font-size: 18px;
}

.copyright {
    text-align: center;
    color: #7f8c8d;
    font-size: 14px;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
    }
    
    .info-section {
        border-left: none;
        border-top: 1px solid #e0e0e0;
    }
}