h5{
    font-family: "Questrial", sans-serif;
    font-weight: 600;
    font-style: normal;
}
h6{
    font-family: "Questrial", sans-serif;
    font-weight: 600;
    font-style: normal;
}
.banner-prana {
    width: 100%;
    height: 100vh;
    background-image: url('../images/prana/pranaBanner.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: #fff;
}

.blooc-prana {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: end;
    padding: 0 0 50px 100px;
}

.bloc-prana-white {
    background-color: #F7F6F5;
    width: 80%;
    height: auto;
    padding: 30px;
    text-align: center;
    margin-bottom: 20px;
}

.blooc-h2 {
    font-size: 50px;
}

.form-control {
    border: none;
    border-bottom: 1px solid #aaa;
    border-radius: 0;
    box-shadow: none;
}

.form-control:focus {
    border-color: #000;
    box-shadow: none;
}

.form-container {
    max-width: 600px;
    margin: 60px auto;
    padding: 10px;
}

h2 {
    margin-bottom: 15px;
}

.btn-custom {
    border: none;
    background: none;
    font-weight: 500;
    font-size: 1rem;
    color: #2d3b2d;
    border: 1px solid #3E4939;
    padding: 10px 25px;
    border-radius: 0;
}

.btn-custom:hover {
    text-decoration: underline;
}

.btn-row {
    display: flex;
    justify-content: end;
    gap: 30px;
    margin-top: 20px;
}

.error-message {
    font-size: 0.875rem;
    color: #ef4444;
    opacity: 0;
    transform: translateY(-0.25rem);
    transition: all 0.2s ease;
}

.error-message.show {
    opacity: 1;
    transform: translateY(0);
}

@media(max-width: 576px) {
    .banner-prana {
        height: 80vh;
        background-position: top center;
    }

    .blooc-prana {
        color: #fff;
        height: 80vh;
        display: flex;
        flex-direction: column;
        padding: 10px;
    }

    .blooc-h2 {
        font-size: 30px;
    }
}