@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

div{
    display: block;
}

/* CSS WARNA BACKGROUND - Modern Gradient Animation */
.bg {
    background: linear-gradient(-45deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    display: block;
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding-top: 30px;
}

.bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    pointer-events: none;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* CSS NAVBAR - Modern Glassmorphism */
.header {
    justify-content: space-between;
    align-items: center;
    padding: 20px 85px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    margin: 20px 40px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.18);
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.1) rotate(5deg);
}

.sosmed .sosm1 {
    color: white;
    padding: 12px 24px;
    font-size: 18px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 500;
}

.sosmed .sosm1:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.sosmed .sosm1 i {
    font-size: 22px;
}

/* CSS UTAMA - Modern Layout */
.main {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-around;
    padding: 60px 40px;
    gap: 60px;
}

.main .judul {
    display: flex;
    flex-direction: column;
    align-items: left;
    max-width: 600px;
}

.judul p {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.judul h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ANIMASI TEXT */

.judul p, h4, .mantap {
    -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
    }
    @keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
    } 

.judul h3, h2 {
    -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInLeft {
    0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    }
    100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
    }
    }
    @keyframes fadeInLeft {
    0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    }
    100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
    }
    } 

.judul h2 {
    font-size: 45px;
    color: white;
    text-transform: uppercase;
}



/* PUNYANYA FORM LOGIN - Modern Glassmorphism Card */
.form {
    min-height: 400px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    width: 450px;
    max-width: 100%;
    padding: 50px 45px;
    align-items: center;
    transition: all 0.3s ease;
}

.form:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px 0 rgba(31, 38, 135, 0.5);
}

.form, .mantap {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
@-webkit-keyframes bounceInRight {
    0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
    }
    60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
    }
    75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
    }
    90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
    }
    100% {
    -webkit-transform: none;
    transform: none;
    }
    }
    @keyframes bounceInRight {
    0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
    }
    60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
    }
    75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
    }
    90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
    }
    100% {
    -webkit-transform: none;
    transform: none;
    }
    } 

.form h3 {
    text-align: center;
    color: white;
    display: block;
    margin-bottom: 40px;
    font-weight: 700;
    font-size: 28px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.form h2 {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5em;
    display: block;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    width: 100%;
    text-transform: uppercase;
    padding: 1em;
    border-radius: 15px;
    margin: 0 0 20px 0;
    font-weight: 600;
    text-align: center;
    backdrop-filter: blur(10px);
}

.form input {
    display: block;
    margin: auto auto;
    width: 100%;
    margin-bottom: 25px;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.form .btn {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 15px;
    padding: 15px 2em;
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}
  

  /* CSS MODAL PENGUMUMAN */
  .pengumum {
    font-size: 28px;
    color: white;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }

  /* CSS BACKGROUND HALAMAN DASHBOARD SAMA PENGUMUMAN */
  .bg2 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%);
    background-size: 400% 400%;
    animation: gradientFlow 20s ease infinite;
    display: block;
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding-top: 30px;
  }

  .bg2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
  }

  @keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

/* CSS TOMBOL BUKA PENGUMUMAN - Modern Gradient Button */
.mantap {
    width: 400px;
    max-width: 90%;
    border: none;
    border-radius: 50px;
    font-size: 24px;
    font-weight: 700;
    color: white;
    padding: 18px 40px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 10px 30px rgba(245, 87, 108, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mantap::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.mantap:hover::before {
    left: 100%;
}

.mantap:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(245, 87, 108, 0.6);
    color: white;
}

.mantap:active {
    transform: translateY(-2px) scale(1.02);
}

.main a {
    text-decoration: none;
    text-align: center;
}

.card .card-body {
    padding: 2cm 2cm;
}


/* MEDIA QUERY - Responsive Design */
@media (max-width: 576px) {
    .header {
        padding: 15px 20px;
        margin: 15px 20px;
        border-radius: 15px;
    }
    
    .logo img {
        width: 45px;
        height: 45px;
    }
    
    .sosmed .sosm1 {
        padding: 10px 18px;
        font-size: 14px;
    }
    
    .sosmed .sosm1 i {
        font-size: 18px;
    }
    
    .judul p {
        font-size: 16px;
        letter-spacing: 2px;
    }
    
    .judul h3 {
        font-size: 36px;
    }
    
    .judul h2 {
        font-size: 32px;
    }
    
    .judul h4 {
        font-size: 18px;
    }
    
    .pengumum {
        text-align: center;
        font-size: 22px;
    }
    
    .mantap {
        width: 90%;
        font-size: 18px;
        padding: 15px 30px;
    }
    
    .form {
        width: 90%;
        padding: 40px 30px;
        margin: 20px;
    }
    
    .form h3 {
        font-size: 22px;
    }
}

@media (max-width: 1000px) {
    .main {
        flex-direction: column;
        display: flex;
        align-items: center;
        padding: 40px 20px;
        gap: 40px;
    }
    
    .main .judul {
        align-items: center;
        text-align: center;
    }
    
    .bg {
        min-height: auto;
        padding-bottom: 60px;
    }
    
    .header {
        padding: 20px 40px;
        margin: 20px;
    }
}

@media (min-width: 1400px) {
    .judul h3 {
        font-size: 72px;
    }
    
    .judul p {
        font-size: 28px;
    }
}



/* Additional Modern Enhancements */

/* Floating Animation for Logo */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.logo img {
    animation: float 3s ease-in-out infinite;
}

/* Pulse Animation for Buttons */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 87, 108, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(245, 87, 108, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(245, 87, 108, 0);
    }
}

.mantap:hover {
    animation: pulse 1.5s infinite;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: rgba(102, 126, 234, 0.3);
    color: white;
}

::-moz-selection {
    background: rgba(102, 126, 234, 0.3);
    color: white;
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Alert Styling */
.alert {
    animation: slideDown 0.5s ease-out;
}

/* Bootstrap Override for Modern Look */
.modal-content {
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.btn:focus {
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.5) !important;
}

/* Improved Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

p {
    font-family: 'Poppins', sans-serif;
}

/* Accessibility Improvements */
.btn:focus-visible,
.form input:focus-visible,
a:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.6);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .bg, .bg2 {
        background: white !important;
    }
    
    .header, .sosmed {
        display: none !important;
    }
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    .form input::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }
}

/* Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* COUNTDOWN TIMER STYLES */
.countdown-container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 40px 30px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    animation: slideDown 0.8s ease-out;
}

.countdown-title {
    text-align: center;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.countdown-title i {
    font-size: 32px;
    color: white;
    animation: pulse 2s ease-in-out infinite;
}

.countdown-title h3 {
    color: white;
    font-size: 26px;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.countdown-boxes {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.countdown-box {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 25px 20px;
    min-width: 120px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.countdown-box:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.25);
}

.countdown-number {
    font-size: 48px;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.countdown-label {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Countdown Animation */
@keyframes countdownPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.countdown-number {
    animation: countdownPulse 1s ease-in-out infinite;
}

/* Responsive Countdown */
@media (max-width: 576px) {
    .countdown-container {
        padding: 30px 20px;
    }
    
    .countdown-title {
        flex-direction: column;
        gap: 10px;
    }
    
    .countdown-title i {
        font-size: 28px;
    }
    
    .countdown-title h3 {
        font-size: 20px;
    }
    
    .countdown-boxes {
        gap: 12px;
    }
    
    .countdown-box {
        min-width: 80px;
        padding: 20px 15px;
    }
    
    .countdown-number {
        font-size: 36px;
    }
    
    .countdown-label {
        font-size: 12px;
        letter-spacing: 1px;
    }
}

@media (max-width: 400px) {
    .countdown-box {
        min-width: 70px;
        padding: 15px 10px;
    }
    
    .countdown-number {
        font-size: 28px;
    }
    
    .countdown-label {
        font-size: 11px;
    }
}

/* PORTAL CLOSED NOTIFICATION STYLES */
.portal-closed-container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    animation: slideDown 0.8s ease-out;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.portal-closed-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.3), rgba(245, 87, 108, 0.3));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.portal-closed-icon i {
    font-size: 48px;
    color: white;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.portal-closed-content h3 {
    color: white;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    line-height: 1.3;
}

.portal-closed-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 400;
}

.portal-closed-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    font-size: 16px;
    margin-bottom: 15px;
    text-align: left;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    min-width: 20px;
}

.portal-closed-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.portal-closed-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: white;
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.portal-closed-btn i {
    font-size: 22px;
}

/* Portal Closed Animation */
@keyframes lockShake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.portal-closed-icon:hover i {
    animation: lockShake 0.5s ease-in-out;
}

/* Responsive Portal Closed */
@media (max-width: 576px) {
    .portal-closed-container {
        padding: 40px 25px;
        border-radius: 25px;
    }
    
    .portal-closed-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 25px;
    }
    
    .portal-closed-icon i {
        font-size: 36px;
    }
    
    .portal-closed-content h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .portal-closed-content p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .portal-closed-info {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .info-item {
        font-size: 14px;
        gap: 12px;
        margin-bottom: 12px;
    }
    
    .info-item i {
        font-size: 18px;
    }
    
    .portal-closed-btn {
        padding: 12px 28px;
        font-size: 16px;
        width: 100%;
        justify-content: center;
    }
    
    .portal-closed-btn i {
        font-size: 20px;
    }
}

@media (max-width: 400px) {
    .portal-closed-container {
        padding: 30px 20px;
    }
    
    .portal-closed-content h3 {
        font-size: 20px;
    }
    
    .portal-closed-content p {
        font-size: 14px;
    }
    
    .info-item {
        font-size: 13px;
    }
}
