* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 800px;
    padding: 20px;
}

.logo-container {
    margin-bottom: 30px;
    text-align: left;
}

.logo {
    height: 60px;
    width: auto;
}

.login-box {
    background-color: #f4e4c1;
    border: 2px solid #8b7355;
    border-radius: 8px;
    padding: 30px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.login-header h2 {
    color: #333;
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.form-group label {
    color: #333;
    font-size: 14px;
    font-weight: normal;
    min-width: 80px;
    text-align: right;
}

.form-group input[type="text"],
.form-group input[type="password"] {
    padding: 6px 8px;
    border: 1px solid #999;
    border-radius: 3px;
    font-size: 14px;
    width: 200px;
    background-color: #fff;
}

.form-group input[type="text"]:focus,
.form-group input[type="password"]:focus {
    outline: none;
    border-color: #666;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

/* Password field with light yellow background to match screenshot */
.form-group input[type="password"] {
    background-color: #fffacd;
}

.login-btn {
    background-color: #e6e6e6;
    border: 1px solid #999;
    border-radius: 3px;
    padding: 6px 20px;
    font-size: 14px;
    cursor: pointer;
    color: #333;
    margin-top: 10px;
}

.login-btn:hover {
    background-color: #d9d9d9;
    border-color: #666;
}

.login-btn:active {
    background-color: #ccc;
}

.suggestion-text {
    margin-top: 20px;
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #d4c4a8;
}

.suggestion-text p {
    color: #666;
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
    font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .login-box {
        padding: 20px;
        margin: 0 10px;
    }
    
    .form-group {
        flex-direction: column;
        align-items: stretch;
        gap: 5px;
    }
    
    .form-group label {
        text-align: left;
        min-width: auto;
    }
    
    .form-group input[type="text"],
    .form-group input[type="password"] {
        width: 100%;
    }
}