body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    height: 100vh;
    background-color: #690606;
    overflow: hidden;
}

.left-section {
    flex: 1;
    min-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e9a30e;
    overflow: hidden;
}

.left-section img {
    max-width: 100%;
    max-height: 100vh;
    object-fit: contain;
}

.right-section {
    width: 400px;
    background-color: #f2f1f0;
    display: flex;
    flex-direction: column;
    padding: 40px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    max-height: 100vh;
}

.login-content {
    margin-top: -20px;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.company-name {
    font-size: 20px;
    margin: 10px 0 20px 0;
    font-weight: bold;
    color: #555;
}

.welcome {
    font-size: 18px;
    margin: 10px 0;
    color: #555;
}

.guide {
    font-size: 14px;
    margin: 15px 0;
    line-height: 1.6;
    color: #666;
}

.motto {
    font-style: italic;
    margin: 15px 0;
    font-weight: bold;
    color: #444;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
}

.login-btn {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    font-weight: bold;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.login-btn:hover {
    background-color: #2980b9;
}

@media (max-width: 900px) {
    body {
        flex-direction: column;
        height: auto;
        overflow: auto;
    }
    
    .left-section {
        width: 100%;
        height: 200px;
        min-width: unset;
    }
    
    .left-section img {
        max-height: 200px;
    }
    
    .right-section {
        width: 100%;
        max-height: none;
    }
}