* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.container {
    background-image: url(./assests/bg.png);
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.logo {
    margin-bottom: 10px;
}

.logo img {
    width: 180px;
    height: auto;
}

.title {
    color: #2e6da4;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.4;
}

.main-image img {
    width: 100%;
    max-width: 700px;
    height: auto;
}

.coming-soon {
    font-size: 34px;
    color: #344f8e;
    font-weight: 900;
}

.loading-container {
    width: 400px;
    max-width: 100%;
    height: 40px;
    margin: 20px auto;
    display: flex;
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid #616161;
    background-color: #fff;
    border-width: 2px;
}

.loading-bar {
    width: 65%;
    height: 100%;
    background-color: #ffa94d;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-weight: bold;
    border-radius: 40px;
    border-right: 1px solid #616161;
    border-width: 2px;
}

.loading-text {
    width: 35%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.footer {
    margin-top: 20px;
    color: #333;
}

.footer-text {
    margin-bottom: 5px;
    font-weight: 800;
}

.powered-by {
    font-weight: 500;
}

.mail-link {
    cursor: pointer;
    color: rgb(51, 51, 51);
    font-weight: 500;
    text-decoration: none;
}

@media screen and (max-width: 1400px) and (min-width:480px) {
    .main-image img {
        max-width: 400px;
    }

    .loading-text,
    .loading-bar {
        font-size: 15px;
    }
}

@media screen and (max-width: 480px) {
    .title {
        font-size: 18px;
    }

    .main-image img {
        max-width: 400px;
    }

    .loading-container {
        width: 300px;
    }

    .loading-text,
    .loading-bar {
        font-size: 13px;
    }
}