/* ===== Base Styles ===== */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-image: url("img/pic3.jpg");
    background-size: cover;      /* fills the screen */
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
    margin: 0;
}

.container {
    max-width: 900px;
    margin: 40px auto;
    background: rgb(9, 32, 163);
    padding: 30px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.2);
}

.header {
    text-align: center;
    margin-bottom: 30px;
}.title-bar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center; /* center the text */
}

/* Logo pinned to top-left */
.success1-logo {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 110px;
    height: 120px;
}
.success-logo {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 110px;
    height: auto;
}

/* Keep header centered */
.header {
    text-align: center;
}


.header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    margin-bottom: 10px;
    color: #00eaff;
}

.header p {
    font-size: 14px;
    color: #ccc;
}
.bayut {
    color: white;
}
strong {
    color: #00eaff;
}
.piyok {
    color: white;
}
h1 {
    color: #00eaff;
}
h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #00eaff;
    border-left: 4px solid #00eaff;
    padding-left: 10px;
}
.text-cute {
    color: #00eaff;
}
li {
    color: white;
}
label {
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
    color: #ddd;
}

input {
    width: 100%;
    padding: 10px;
    margin-left: -10px;
    margin-right: -10px;
    border-radius: 8px;
    border: none;
    outline: none;
    margin-bottom: 15px;
    font-size: 14px;
    background: white;
    color: black;
}
.obos {
    color: white;
}
input:focus {
    border: 1px solid #00eaff;
    box-shadow: 0 0 5px #00eaff;
}

.note {
    font-size: 13px;
    color: #bbb;
    margin-top: 20px;
}

.submit-btn {
    display: block;      
    width: fit-content;   
    margin: 25px auto 0 auto; 
    padding: 12px 25px;
    background: linear-gradient(90deg, #00eaff, #0066ff);
    border: none;
    border-radius: 30px;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
}
.submit-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 0 15px #00eaff;
    color: #fff;
}
.bottom-right-logo {
    position: absolute;
    bottom: 110px;      /* keep it lifted */
    right: 50px;
    width: 200px;     /* 👈 increase size */
    height: auto;     /* keeps aspect ratio */
    opacity: 0.85;
    pointer-events: none;
}

footer {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: #aaa;
}

@media (max-width: 600px) {
    .container {
        margin: 20px;
        padding: 20px;
    }

    .header h1 {
        font-size: 24px;
    }
}

/* ===== Requirements Section ===== */
.requirements {
    margin-top: 20px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
    color: #ddd;
    gap: 8px;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label a {
    color: #00eaff;
    text-decoration: underline;
}

.reminder {
    font-size: 13px;
    color: #ff6666;
    margin-top: 8px;
    font-style: italic;
}

/* ===== Collapsible Styles ===== */
.collapsible1 {
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 12px 20px;
    border-left: 8px solid #00eaff;
    border-right: 8px solid #00eaff;
    color: #00eaff;
    font-weight: 600;
    transition: background 0.3s;
    border-radius: 10px;
    margin-top: 15px;
    position: relative;
}
.collapsible {
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 12px 20px;
    border-left: 4px solid #00eaff;
    color: #00eaff;
    font-weight: 600;
    transition: background 0.3s;
    border-radius: 5px;
    margin-top: 15px;
    position: relative;
}

.collapsible:hover {
    background-color: rgba(0, 234, 255, 0.1);
}

.collapsible::after {
    content: '\25BC';
    position: absolute;
    right: 20px;
    transition: transform 0.3s;
}

.collapsible.active::after {
    transform: rotate(-180deg);
}

.content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 0 20px;
    border-radius: 0 0 5px 5px;
    margin-bottom: 10px;
}

.content.show {
    padding: 10px 20px;
}

.content p,
.content ul {
    text-align: justify;
    line-height: 1.6;
}

.content ul li {
    margin-bottom: 8px;
}

.checkbox-label input[disabled] {
    cursor: not-allowed;
    opacity: 0.6;
}

.submit-btn:disabled {
    background: gray;
    cursor: not-allowed;
    opacity: 0.6;
}
/* ===== Custom Requirement Checkbox ===== */
.checkbox-label input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #555;
    border-radius: 4px;
    background: transparent;
    position: relative;
    cursor: not-allowed;
    transition: all 0.3s ease;
}

/* Checked state */
.checkbox-label input[type="checkbox"]:checked {
    border-color: #00eaff;
    background: #00eaff;
    box-shadow: 0 0 8px #00eaff;
}

/* Checkmark */
.checkbox-label input[type="checkbox"]:checked::after {
    content: "✔";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    font-size: 14px;
    color: #000;
    font-weight: bold;
}

/* Slight glow animation */
.checkbox-label input[type="checkbox"]:checked {
    animation: pulseGlow 1.2s infinite alternate;
}

@keyframes pulseGlow {
    from {
        box-shadow: 0 0 6px #00eaff;
    }
    to {
        box-shadow: 0 0 14px #00eaff;
    }
}@media (max-width: 600px) {
    .success-logo {
        position: static;
        transform: none;
        margin-bottom: 10px;
    }

    .title-bar {
        flex-direction: column;
    }
}
@media (max-width: 600px) {
    .box-bottom-right-logo {
        width: 100px;
        bottom: 60px;
        right: 10px;
    }
}