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

.modal-content {
    background: white;
    padding: 24px;
    border-radius: 8px;
    width: 400px;
    max-width: 90%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

.close-button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    right: 16px;
    top: 16px;
}

.logo-container {
    text-align: center;
    margin-bottom: 24px;
}

.modal-logo {
    height: 60px;
    margin: 0 auto;
}

.error-message {
    display: none;
    color: #e53e3e;
    background: #fff5f5;
    padding: 8px;
    border-radius: 4px;
    margin-bottom: 16px;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #4a5568;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
}

.remember-label {
    display: flex;
    align-items: center;
    color: #4a5568;
    cursor: pointer;
}

.remember-label input {
    margin-right: 8px;
}

.submit-button {
    width: 100%;
    padding: 12px;
    background: #35af5e;
    color: white;
    border-radius: 4px;
    font-weight: 500;
    margin-bottom: 16px;
    cursor: pointer;
    border: none;
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.modal-footer {
    text-align: center;
}

.link-button {
    background: none;
    border: none;
    color: #4a5568;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
    padding: 0;
    margin: 8px 0;
}

.forgot-password {
    color: #4a5568;
    text-decoration: none;
    font-size: 14px;
    display: block;
    margin-top: 8px;
}