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

/* BODY */
body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #0B3D2E, #145c43);
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* CANVAS BACKGROUND */
#bgCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
}

/* FLOATING GLASSMORPHISM ORBS */
.bg-orb {
    position: fixed;
    width: var(--size);
    height: var(--size);
    top: var(--top);
    left: var(--left);
    background: radial-gradient(circle, var(--c1), var(--c2));
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.25;
    z-index: 1;
    pointer-events: none;
    animation: orbFloat 12s ease-in-out infinite;
    animation-delay: var(--delay);
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25%      { transform: translate(30px, -40px) scale(1.1); }
    50%      { transform: translate(-20px, 30px) scale(0.95); }
    75%      { transform: translate(40px, 20px) scale(1.05); }
}

/* HEADER */
.header {
    width: 100%;
    background: rgba(11, 61, 46, 0.95);
    text-align: center;
    padding: 0;
    line-height: 0;
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.header img {
    display: block;
    margin: 0 auto;
    height: 44px;
    width: auto;
    padding: 0;
    vertical-align: top;
}

/* FOOTER */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    text-align: center;
    padding: 10px 16px 10px;
    color: white;
    backdrop-filter: blur(8px);
    z-index: 50;
    height: 80px;
}

.footer-inner p {
    font-size: 16px;
    color: rgba(255,255,255,0.45);
    margin-top: 8px;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.footer-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 19px;
    transition: 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.footer-links a:hover {
    color: #fff;
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

/* CONTAINER */
.container {
    width: 100%;
    max-width: 100%;
    padding: 16px 20px;
    position: fixed;
    top: 44px;
    bottom: 68px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    z-index: 2;
}

/* CARD */
.card {
    background: rgba(255, 255, 255, 0.97);
    padding: 44px 36px;
    border-radius: 20px;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.7s ease;
    backdrop-filter: blur(15px);
}

/* TITLE */
.card h1 {
    color: #0B3D2E;
    font-size: 26px;
    margin-bottom: 10px;
}

.card h2 {
    font-size: 20px;
    color: #FF4F81;
    margin: 6px 0;
}

/* SUBTITLE */
.subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 22px;
    line-height: 1.6;
}

/* INPUTS */
input {
    width: 100%;
    padding: 15px 14px;
    margin: 8px 0;
    border-radius: 10px;
    border: 1.5px solid #ddd;
    outline: none;
    font-size: 15px;
    background: #f9f9f9;
    transition: 0.3s;
}

input:focus {
    border-color: #FF4F81;
    background: #fff;
    box-shadow: 0 0 8px rgba(255, 79, 129, 0.25);
}

/* BUTTON */
button {
    width: 100%;
    padding: 15px;
    margin-top: 14px;
    background: linear-gradient(135deg, #FF4F81, #e0366a);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(255, 79, 129, 0.35);
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255, 79, 129, 0.45);
}

button:active {
    transform: translateY(0);
}

/* FADE ANIMATION */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(25px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* TABLET */
@media (min-width: 481px) and (max-width: 768px) {
    .container { top: 44px; bottom: 80px; padding: 10px 16px; }
    .card { max-width: 420px; padding: 30px 28px; }
    .card h1 { font-size: 24px; }
    .subtitle { font-size: 13px; margin-bottom: 16px; }
    input { font-size: 14px; padding: 12px 14px; margin: 6px 0; }
    button { font-size: 14px; padding: 13px; margin-top: 10px; }
}

/* LAPTOP / DESKTOP */
@media (min-width: 769px) {
    .container { top: 44px; bottom: 80px; }
    .card { max-width: 420px; padding: 44px 40px; }
    .card h1 { font-size: 28px; }
    .subtitle { font-size: 15px; margin-bottom: 22px; }
    input { font-size: 15px; padding: 14px; margin: 7px 0; }
    button { font-size: 15px; padding: 15px; margin-top: 12px; }
}

/* SMALL LAPTOP (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .container { top: 44px; bottom: 80px; padding: 10px 20px; }
    .card { max-width: 400px; padding: 30px 32px; }
    .card h1 { font-size: 24px; }
    .subtitle { font-size: 13px; margin-bottom: 16px; }
    input { font-size: 14px; padding: 12px 14px; margin: 6px 0; }
    button { font-size: 14px; padding: 13px; margin-top: 10px; }
}

/* SMALL MOBILE (max 360px) */
@media (max-width: 360px) {
    .card { padding: 16px 14px; }
    .card h1 { font-size: 18px; }
    .subtitle { font-size: 11px; margin-bottom: 10px; }
    input { font-size: 13px; padding: 9px 10px; margin: 3px 0; }
    button { font-size: 13px; padding: 10px; margin-top: 6px; }
}

/* MOBILE (361px - 480px) */
@media (min-width: 361px) and (max-width: 480px) {
    .container { padding: 8px 8px; top: 44px; bottom: 80px; }
    .card { padding: 20px 18px; border-radius: 16px; max-width: 96%; }
    .card h1 { font-size: 20px; margin-bottom: 4px; }
    .subtitle { font-size: 12px; margin-bottom: 12px; }
    input { font-size: 14px; padding: 10px 12px; margin: 4px 0; }
    button { font-size: 14px; padding: 11px; margin-top: 8px; }
    .link-btn { font-size: 14px; padding: 11px; margin-top: 8px; }
    .header { padding: 0; }
    .footer { padding: 10px; }
}

/* APPROVAL MESSAGE */
.approval-msg {
    text-align: left;
    font-size: 13px;
    color: #444;
    line-height: 1.6;
    margin-top: 8px;
}

.approval-msg p { margin-bottom: 6px; }

/* SOCIAL LINKS */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 8px 0;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 14px;
    background: linear-gradient(135deg, #0B3D2E, #145c43);
    border-radius: 9px;
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: 0.2s;
    box-shadow: 0 3px 10px rgba(11,61,46,0.25);
}

.social-links a:hover {
    opacity: 0.85;
    transform: translateX(3px);
}
