﻿.welcome {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.welcome-header {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.welcome-title {
    color: #19346E;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
}

.welcome-image {
    width: 100%;
    max-width: 700px;
    margin-bottom: 32px;
}

.welcome-description,
.success-description {
    color: #19346E;
    font-size: 1.35rem;
    line-height: 1.6;
    text-align: center;
}

.welcome-footer {
    width: 100%;
}

.row {
    display: flex;
    gap: 24px;
}

.col {
    flex: 1;
    min-width: 300px;
}

/* Tablet */

@media (max-width:992px) {

    .welcome-title {
        font-size: 2.3rem;
    }

    .welcome-image {
        max-width: 420px;
    }
}

/* Mobile */

@media (max-width:768px) {

    .welcome-title {
        font-size: 1.6rem;
    }

    .welcome-image {
        max-width: 100%;
    }

    .welcome-description,
    .success-description {
        font-size: 1.1rem;
    }

    .row {
        flex-direction: column;
    }
}
