/* Header */
header {
    background: #0047AB;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
    margin-right: auto;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icons a {
    color: white;
    font-size: 18px;
    text-decoration: none;
}

/* Yellow Bar */
.yellow-bar {
    background: #FFD700;
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0 30px;
}

.btn-kembali {
    background: white;
    color: #0047AB;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-kembali:hover {
    background: #f0f0f0;
    transform: translateX(-3px);
}

/* Main Content */
.main-content {
    background: #808080;
    padding: 60px 20px;
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
}

.background-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.background-logo img {
    width: 750px;
    height: 750px;
    object-fit: contain;
}

.form-container {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 320px;
    position: relative;
    z-index: 1;
}

.form-container h2 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
}

.form-group {
    margin-bottom: 15px;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

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

.password-toggle {
    position: absolute;
    right: 10px;
    top: 32px;
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    padding: 5px;
}

.forgot-link {
    text-align: right;
    margin-bottom: 15px;
}

.forgot-link a {
    color: #0099FF;
    font-size: 12px;
    text-decoration: none;
}

.btn-primary {
    width: 100%;
    padding: 12px;
    background: #0099FF;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
}

.btn-primary:hover {
    background: #0088EE;
}

.btn-primary:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.signup-link,
.signin-link {
    text-align: center;
    font-size: 12px;
    color: #666;
    margin-top: 15px;
}

.signup-link a,
.signin-link a {
    color: #0099FF;
    text-decoration: none;
    cursor: pointer;
}

.signup-link a:hover,
.signin-link a:hover {
    text-decoration: underline;
}

.form-container.hidden {
    display: none;
}

.error-message {
    background: #ffebee;
    color: #c62828;
    padding: 10px;
    border-radius: 4px;
    font-size: 12px;
    margin-bottom: 15px;
    display: none;
}

.success-message {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 10px;
    border-radius: 4px;
    font-size: 12px;
    margin-bottom: 15px;
    display: none;
}

.related-products h3 {
    font-size: 14px;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
    }
}