:root {
    --main-color: #5796c2;
    --main-color-dark: #407ba3;
}

body {
    background-color: #ffffff;
}

.logo {
    max-width: 300px;
    margin: 20px auto;
    display: block;
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
}

.contact-details {
    margin-top: 30px;
    font-size: 18px;
}

.form-container {
    max-width: 600px;
    margin: 40px auto;
}
.custom-alert {
    text-align: center;
}
    .custom-alert a {
        display: block;
        margin: auto;
        width: fit-content;
    }

.company-blue {
    color: var(--main-color);
    text-align: center;
}

.validator-msg {
    font-size: 16px !important;
    display: block;
    color: darkred;
}

.form-type {
    display: inline-flex;
    gap: 20px;
}

    .form-type p {
        margin-bottom: 0 !important;
    }

.block-label {
    display: block;
}

.carousel-item {
    height: 100%;
}

.btn-color {
    background-color: var(--main-color);
    color: white;
    transition: all 0.3s ease;
}

    .btn-color:hover {
        background-color: var(--main-color-dark);
        color: white;
    }
