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

body {
    display: flex;
    height: 100vh;
    background-color: #ffffff;
}

.split-left {
    width: 35%;
    background-color: #0a61c4; /* Main #0a61c4 color */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.split-left::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.2); /* Black small percent combination */
}

.left-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px;
}

.left-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.split-right {
    width: 65%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff; /* White bg */
}

.login-container {
    width: 100%;
    max-width: 400px;
    padding: 40px;
}

.login-container h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}

.login-container p {
    color: #666;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #444;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #0a61c4;
    box-shadow: 0 0 0 3px rgba(10, 97, 196, 0.1);
}

.login-btn {
    width: 100%;
    padding: 14px;
    background-color: #0a61c4;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.login-btn:hover {
    background-color: #084c9c;
}

.error-message {
    color: #e53e3e;
    font-size: 0.9rem;
    margin-top: 15px;
    display: none;
    text-align: center;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    align-items: center;
}

.modal-header h2 {
    font-size: 1.5rem;
    color: #333;
}

.close-btn {
    font-size: 1.5rem;
    cursor: pointer;
    color: #718096;
    background: none;
    border: none;
}
