﻿body {
    background-image: url('backg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.main-container {
    width: 90%;
    max-width: 850px;
    padding: 40px 30px;
    text-align: center;
    background: rgba(255, 255, 255, 0.97);
    margin: 40px 10px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.logo-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.school-logo {
    width: 100px;
    height: auto;
}

.school-name {
    color: #f1c40f;
    font-family: 'Georgia', serif;
    font-size: 36px;
    font-weight: bold;
    margin: 10px 0;
}

.school-info {
    color: #555;
    font-size: 13px;
    font-weight: bold;
    margin: 2px 0;
}

.announcement-badge a {
    background-color: #f1c40f;
    color: white;
    display: inline-block;
    padding: 12px 50px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 28px;
    margin: 25px 0;
    text-decoration: none;
    animation: pulse 2s infinite ease-in-out;
}

.admission-title {
    color: #1b4d3e;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
}

.ongoing-text {
    color: #f1c40f;
    font-size: 65px;
    font-weight: 900;
    margin: 10px 0;
    text-shadow: 2px 2px 0px #fff, 4px 4px 10px rgba(0,0,0,0.1);
}

.instruction-text {
    color: #444;
    font-size: 17px;
    margin: 10px 0;
}

.formbold-main-wrapper {
    padding: 30px 0;
}

.formbold-form-wrapper {
    margin: 0 auto;
    max-width: 550px;
    width: 100%;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #f1c40f;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-header h2 {
    color: #1b4d3e;
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid #f1c40f;
    display: block;
    padding-bottom: 10px;
}

.formbold-form-label {
    display: block;
    font-weight: 600;
    color: #1b4d3e;
    margin-bottom: 8px;
}

.formbold-form-input {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 16px;
    margin-bottom: 15px;
    outline: none;
    box-sizing: border-box;
}

    .formbold-form-input:focus {
        border-color: #1b4d3e;
    }

.formbold-btn {
    width: 100%;
    padding: 15px;
    background: #1b4d3e;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

    .formbold-btn:hover {
        background: #f1c40f;
        color: #1b4d3e;
    }

.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.formbold--mx-3 {
    margin: 0 -10px;
}

.formbold-px-3 {
    padding: 0 10px;
}

.w-full {
    width: 100%;
}

@media (min-width: 540px) {
    .sm\:w-half {
        width: 50%;
    }
}

.content-wrapper-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 3px solid #f1c40f;
}

.footer-info-left {
    flex: 1;
}

.contact-name {
    color: #1b4d3e;
    font-size: 20px;
    font-weight: bold;
    margin: 5px 0;
}

.qr-section-right {
    width: 180px;
    text-align: center;
}

.qr-box {
    width: 100%;
    border: 4px solid #f1c40f;
    background: #fff;
    padding: 5px;
    box-sizing: border-box;
}

.scan-tag {
    background: #f1c40f;
    color: #000;
    font-weight: bold;
    font-size: 12px;
    padding: 5px;
}

.social-links a {
    color: #1877F2;
    text-decoration: none;
    font-weight: bold;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.cct-custom-footer {
    margin-top: 30px;
}

.footer-content {
    display: flex;
    justify-content: center;
}

.wincel-brand {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border: 1.5px solid #f1c40f;
    padding: 8px 18px;
    border-radius: 50px;
    text-decoration: none;
    gap: 12px;
    transition: 0.3s;
}

.maint-label {
    font-size: 10px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: -2px;
}

.company-name {
    color: #1b4d3e;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.2;
}

.wincel-mini-logo {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.wincel-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 650px) {
    .content-wrapper-footer {
        flex-direction: column;
        text-align: center;
    }

    .footer-info-left {
        margin-bottom: 25px;
    }

    .ongoing-text {
        font-size: 45px;
    }

    .qr-section-right {
        margin: 0 auto;
    }
}
