/* BREADCRUM */
.activ{
    color:#6c757d;
}
/* BREADCRUM END */


.background-img{
    background-size: cover;
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 40%;
}


.box{
    background-color: white;
    display: flex;
    flex-direction: column;
    margin: 0 25vw;
    padding: 0 3vw;
    padding-bottom: 12vh;
    box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.75);
    border-radius: 15px;
    line-height: 1.6;
    align-items: center; 
    width: fit-content;

}

form > label{
    min-width: 10vw;
    line-height: 3;
}

.box > h3{
    font-weight: 600;
}

.input{

    border-bottom-left-radius: 50% !important;
}








.submit-container {
    margin-top: 30px;
    text-align: center;
    width: auto;
}

.submit-btn {
    background-color: #800000;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #600000;
}

.submit-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.submit-status {
    margin-top: 10px;
    font-weight: bold;
}

.success {
    color: green;
}

.error {
    color: red;
}

/* Loading spinner */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #800000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


