@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    background-color: #f4f4f4;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.content-container {
    max-width: 800px;
    padding-bottom: 70px;
}

.logo-main {
    max-width: 300px;
    height: auto;
    margin-bottom: 20px;
}

.main-heading {
    color: #333;
    margin-bottom: 10px;
}

.sub-text {
    color: #666;
    font-size: 1.1em;
    line-height: 1.5;
}

.footer-info {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 90%;
    color: #555;
    font-size: 0.9em;
    line-height: 1.6;
}

.footer-info a {
    color: #03c7c3;
    text-decoration: none;
    font-weight: 600;
}

.qspace-link {
    white-space: nowrap;
}

.logo-secondary {
    position: absolute;
    bottom: 60px;
    right: 40px;
    width: 120px;
    height: auto;
    z-index: 10;
}


@media (max-width: 768px) {
    .footer-info {
        position: static;
        transform: none;
        width: 100%;
        order: 3;
    }

    .logo-secondary {
        position: static;
        order: 2;
    }

    body {
        overflow: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 50px;
        min-height: auto;
    }
}


.search-form {
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-input {
    padding: 10px 15px;
    font-size: 1rem;
    border: 1px solid #dbdbdb;
    border-right: none;
    border-radius: 6px 0 0 6px;
    width: 250px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.search-input:focus {
    border-color: #485fc7;
    box-shadow: 0 0 0 0.125em rgba(72, 95, 199, 0.25);
    z-index: 2;
}

.search-button {
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    background-color: #027e7c;
    border: 1px solid #027e7c;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    transition: background-color 0.2s;
}

.search-button:hover {
    background-color: #03c7c3;
}


.admin-link-container {
    margin-top: 60px;
    font-size: 0.95em;
}

.admin-link {
    color: #027e7c;
    text-decoration: none;
    font-weight: 600;
    padding: 5px 10px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.admin-link:hover {
    color: #03c7c3;
}