/*Welcome Section*/

.welcomeSection,
.confirmSection {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgb(11, 146, 190);
    height: calc(100vh - 60px);
}

.welcomeSection h1,
.confirmSection h1 {
    font-size: 3vw;
    margin-bottom: 1rem;
    color: rgb(109, 108, 108);
}

.welcomeSection a,
.confirmSection p {
    text-align: center;
    font-size: 1.3vw;
    text-decoration: none;
    color: aliceblue;

}

.error-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    padding: 2rem;
    text-align: center;
    margin-top: 50px;
    margin-left: 10px;
    margin-right: 10px;
    border-radius: 5px;
}

.error-box {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
    max-width: 600px;
    width: 100%;
}

.error-box h1 {
    font-size: 1.8rem;
    color: #37a9c5;
    margin-bottom: 1.2rem;
}

.error-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1.2rem;
}

.back-link a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.back-link a:hover {
    border-color: #333;
}







/*Responsive Design*/

@media (max-width:952px) {

    .welcomeSection h1,
    .confirmSection h1 {
        font-size: 3.5vw;
    }

    .welcomeSection p .confirmSection p {
        font-size: 1.8vw;
    }

}