* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #eaf8ff, #ffffff, #e8f7f2);
    color: #17324d;
}

.page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

/* Background circles */

.page::before,
.page::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.page::before {
    width: 400px;
    height: 400px;
    background: rgba(24, 166, 166, 0.08);
    top: -180px;
    left: -150px;
}

.page::after {
    width: 500px;
    height: 500px;
    background: rgba(40, 150, 220, 0.08);
    bottom: -250px;
    right: -200px;
}

.content {
    width: 100%;
    max-width: 850px;
    background: rgba(255, 255, 255, 0.92);
    padding: 55px 40px;
    text-align: center;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(26, 75, 100, 0.12);
    position: relative;
    z-index: 1;
}

/* Logo */

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.logo-icon {
    width: 65px;
    height: 65px;
    background: #159b9b;
    color: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(21, 155, 155, 0.25);
}

.logo-text {
    text-align: left;
}

.logo-text h2 {
    font-size: 25px;
    color: #123f60;
}

.logo-text span {
    color: #159b9b;
    font-size: 16px;
    font-weight: 600;
}

.line {
    width: 80px;
    height: 3px;
    background: #159b9b;
    margin: 0 auto 30px;
    border-radius: 10px;
}

/* Main heading */

.welcome {
    color: #159b9b;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

h1 {
    font-size: 48px;
    line-height: 1.15;
    color: #123f60;
    margin-bottom: 25px;
}

h1 span {
    color: #159b9b;
}

/* Hospital icon */

.construction-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #e9f8f7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.under-title {
    color: #123f60;
    font-size: 28px;
    margin-bottom: 15px;
}

.description {
    max-width: 600px;
    margin: auto;
    color: #667788;
    font-size: 17px;
    line-height: 1.7;
}

.coming {
    margin-top: 20px;
    color: #159b9b;
    font-size: 18px;
}

/* Loading bar */

.loader {
    width: 280px;
    height: 7px;
    background: #e2eeee;
    border-radius: 20px;
    margin: 30px auto 20px;
    overflow: hidden;
}

.loader-bar {
    width: 45%;
    height: 100%;
    background: #159b9b;
    border-radius: 20px;
    animation: loading 2s ease-in-out infinite;
}

@keyframes loading {
    0% {
        transform: translateX(-120%);
    }

    100% {
        transform: translateX(320%);
    }
}

.footer-text {
    color: #8795a1;
    font-size: 14px;
}

/* Mobile */

@media (max-width: 600px) {

    .page {
        padding: 15px;
    }

    .content {
        padding: 40px 22px;
        border-radius: 18px;
    }

    .logo-icon {
        width: 55px;
        height: 55px;
        font-size: 32px;
    }

    .logo-text h2 {
        font-size: 20px;
    }

    .logo-text span {
        font-size: 13px;
    }

    h1 {
        font-size: 34px;
    }

    .under-title {
        font-size: 23px;
    }

    .description {
        font-size: 15px;
    }

    .loader {
        width: 220px;
    }
}