
.login-header {
    background: #008752;
    height: 80px;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}
.login-header-content {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}
.login-header-logo img {
    height: 60px;
}
.login-header-nav {
    display: flex;
    gap: 32px;
}
.login-header-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 0 4px;
    transition: opacity 0.2s;
}
.login-header-nav a:hover {
    opacity: 0.7;
}
.login-main-container {
    margin-top: 120px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 80vh;
}
.login-card {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    width: 700px;
    max-width: 95vw;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.login-card-image {
    width: 100%;
    height: 260px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.login-card-image img, .login-card-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.login-card-body {
    padding: 32px 40px 24px 40px;
}
.login-card-footer {
    padding: 16px 40px 24px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f0f0f0;
}
.login-footer-logo img {
    width: 60px;
}
.login-footer-social a {
    margin-left: 12px;
    display: inline-block;
}
.login-footer-social img {
    width: 28px;
}
.login-form-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 0;
    background: transparent;
}
.login-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 24px;
    color: #333;
}
.login-form-group {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
}
.login-label {
    font-size: 1rem;
    margin-bottom: 6px;
    color: #222;
}
.login-input {
    padding: 8px 12px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 3px;
    background: #fafafa;
    transition: border 0.2s;
}
.login-input:focus {
    border-color: #008752;
    outline: none;
}
.login-checkbox {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}
.login-btn {
    width: 120px;
    background: #008752;
    color: #fff;
    border: none;
    border-radius: 3px;
    padding: 8px 0;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}
.login-btn:hover {
    background: #006b40;
}
.login-link {
    font-size: 0.95rem;
    color: #008752;
    text-decoration: none;
    transition: color 0.2s;
}
.login-link:hover {
    color: #005c36;
    text-decoration: underline;
}
@media (max-width: 600px) {
    .login-card-body, .login-card-footer {
        padding: 16px 10px;
    }
    .login-card {
        width: 100%;
        max-width: 100%;
        border-radius: 0;
    }
    .login-form-container {
        max-width: 100%;
        padding: 0 8px;
    }
}
