/* ================================
    Forms
================================ */
.message {
    position: fixed;
    z-index: 9999;
    left: 50%;
    top: 130px;
    opacity: 0;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(6px);
    animation: message 5s ease forwards;
    animation-delay: .3s;
}

@keyframes message {
    0% {
        transform: translateY(-250px);
        opacity: 0;
    }
    15% {
        transform: translateY(0);
        opacity: 1;
    }
    85% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-250px);
        opacity: 0;
    }
}

.message.error {
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.25);
    color: #b91c1c;
}

.message.error::before {
    content: "⚠";
    font-size: 16px;
}

.message.success {
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #15803d;
}

.message.success::before {
    content: "✓";
    font-size: 16px;
}

.message.info {
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.25);
    color: #1d4ed8;
}

.message.info::before {
    content: "ℹ";
    font-size: 16px;
}

.bm-form {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.bm-form .col-1 {grid-column: span 1;}
.bm-form .col-2 {grid-column: span 2;}
.bm-form .col-3 {grid-column: span 3;}
.bm-form .col-4 {grid-column: span 4;}
.bm-form .col-5 {grid-column: span 5;}
.bm-form .col-6 {grid-column: span 6;}
.bm-form .col-7 {grid-column: span 7;}
.bm-form .col-8 {grid-column: span 8;}
.bm-form .col-9 {grid-column: span 9;}
.bm-form .col-10 {grid-column: span 10;}
.bm-form .col-11 {grid-column: span 11;}
.bm-form .col-12 {grid-column: span 12;}

:focus {
    outline: none;
}

::placeholder {
    opacity: .4;
    color: #212529;
}

::-ms-input-placeholder {
    opacity: .4;
    color: #212529;
}

label {
    color: rgb(33, 37, 41);
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 13px;
    display: inline-block;
}

input[type=week],
input[type=url],
input[type=date],
input[type=time],
input[type=password],
input[type=search],
input[type=number],
input[type=color],
input[type=month],
input[type=datetime-local],
input[type=text],
input[type=email],
input[type=tel] {
    font-size: 13px;
    border-radius: 4px;
    width: 100%;
    color: #212529;
    height: unset;
    border: 1px solid #e9ebec;
    padding: 8px 14px;
    background: #fff;
    font-family: "Poppins", sans-serif;
}

input[type=checkbox] {
    display: block;
}

select {
    font-size: 13px;
    border-radius: 4px;
    width: 100%;
    color: #212529;
    height: unset;
    border: 1px solid #e9ebec;
    padding: 8px 14px;
    background: #fff;
    font-family: "Poppins", sans-serif;
}

textarea {
    font-size: 13px;
    border-radius: 4px;
    width: 100%;
    color: #212529;
    height: 250px;
    border: 1px solid #e9ebec;
    padding: 8px 14px;
    background: #fff;
    resize: vertical;
    font-family: "Poppins", sans-serif;
}

input[type=submit],
button {
    font-size: 13px;
    background-color: #ff6f00;
    color: #fff;
    line-height: 20px;
    padding: 8px 14px;
    border-radius: 4px;
    border: unset;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    transition: background-color .2s ease;
}

/* ================================
    @media's
================================ */
@media screen and (max-width: 1600px) {

}

@media screen and (max-width: 1400px) {

}

@media screen and (max-width: 1199px) {

}

@media screen and (max-width: 991px) {

}

@media screen and (max-width: 767px) {

}