* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", "Segoe UI", sans-serif;
}

body.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f6f3ea 0%, #ece4cf 100%);
    padding: 30px 20px;
}

.login-wrapper {
    width: 100%;
    max-width: 440px;
}

.login-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 40px 34px 30px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(215, 191, 113, 0.15);
}

.login-header {
    text-align: center;
    margin-bottom: 28px;
}

.login-header .logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    margin-bottom: 16px;
}

.login-header h1 {
    font-size: 34px;
    font-weight: 700;
    color: #1e1e1e;
    margin-bottom: 8px;
}

.login-header p {
    color: #777;
    font-size: 15px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #444;
}

.form-group input {
    width: 100%;
    height: 56px;
    padding: 0 18px;
    border: 1px solid #ddd;
    border-radius: 16px;
    background: #fafafa;
    font-size: 15px;
    color: #222;
    transition: all 0.25s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #d7bf71;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(215, 191, 113, 0.18);
}

.password-group {
    position: relative;
}

.password-group input {
    padding-right: 60px;
}

.password-group button {
    position: absolute;
    right: 14px;
    top: 42px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: #d7bf71;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.password-group button:hover {
    background: #c9af58;
    transform: scale(1.05);
}

.btn-primary {
    width: 100%;
    height: 56px;
    border: none;
    border-radius: 18px;
    background: linear-gradient(135deg, #d7bf71 0%, #c7a84d 100%);
    color: #1f1f1f;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(215, 191, 113, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(215, 191, 113, 0.4);
}

.register-link {
    margin-top: 22px;
    text-align: center;
}

.register-link a {
    color: #b89534;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.register-link a:hover {
    color: #8f7225;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .login-card {
        padding: 30px 22px 24px;
        border-radius: 22px;
    }

    .login-header h1 {
        font-size: 28px;
    }

    .form-group input,
    .btn-primary {
        height: 52px;
    }
}


#registerForm .form-group {
    margin-bottom: 20px;
}

#registerForm input {
    width: 100%;
    height: 56px;
    padding: 0 18px;
    border: 1px solid #ddd;
    border-radius: 16px;
    background: #fafafa;
    font-size: 15px;
    color: #222;
    transition: all 0.25s ease;
}

#registerForm input:focus {
    outline: none;
    border-color: #d7bf71;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(215, 191, 113, 0.18);
}

#registerForm .btn-primary {
    margin-top: 10px;
}

.register-footer {
    margin-top: 22px;
    text-align: center;
    font-size: 14px;
    color: #666;
}

.register-footer a {
    color: #b89534;
    text-decoration: none;
    font-weight: 600;
}

.register-footer a:hover {
    text-decoration: underline;
    color: #8f7225;
}

@media (max-width: 768px) {
    #registerForm input {
        height: 52px;
        font-size: 14px;
    }
}

#registerForm .form-group {
    margin-bottom: 20px;
}

#registerForm input {
    width: 100%;
    height: 56px;
    padding: 0 18px;
    border: 1px solid #ddd;
    border-radius: 16px;
    background: #fafafa;
    font-size: 15px;
    color: #222;
    transition: all 0.25s ease;
}

#registerForm input:focus {
    outline: none;
    border-color: #d7bf71;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(215, 191, 113, 0.18);
}

#registerForm .btn-primary {
    margin-top: 10px;
}

.register-footer {
    margin-top: 22px;
    text-align: center;
    font-size: 14px;
    color: #666;
}

.register-footer a {
    color: #b89534;
    text-decoration: none;
    font-weight: 600;
}

.register-footer a:hover {
    text-decoration: underline;
    color: #8f7225;
}

@media (max-width: 768px) {
    #registerForm input {
        height: 52px;
        font-size: 14px;
    }
}