body {
    text-align: center;
    background-color: #6EB06A; 
 /*   background-image: linear-gradient(#0c6d07, #ebf6eb);*/
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

footer {
    display: block;
    width: 200px;
    font-size: 12px;
    text-align: center;
    margin: auto;
}

#main_div {
    display: block;
    width: 400px;
    height: 90px;
    margin: 30px auto 70px auto;
 /*   background-color: #2c1a13; */
    text-align: center;
    font-weight: bold;
}

#main_header {
    font-family: 'VastShadow-Regular';
    src: url("/fonts/VastShadow-Regular.ttf");
    color: #15a10d;
    font-size: 52px;
    padding: auto;
    border: black;    
    background-color: #2c1a13;
}

#main_text {
    display: flex;
    flex-direction: column;
    color:#d3edd1 ;
    background-color:#164E42 ;
    font-size: 16px;
    margin: 0 250px;
    padding: 20px;
}

#btn_login {
    margin: 25px;
    font-size: 20px;
    background-color:#164E42 ;
    padding: 6px 12px;
    border: black;
    color: #CC713D;
    font-weight:bold;
}

.card {
    display: flex;
    flex-direction: column;
    margin: 40px auto 30px auto;
}

.form_submit {
    display: flex;
    flex-direction: row;
    justify-content: center; 
    gap: 30px; 
}


.step {
    margin: 50px auto;
}

.style_group {
    margin: 0 auto; 
    padding-bottom: 0;
}

.radio_item {
    text-align: center;
    margin: 0 auto 0 auto;
    font-size: 0.9rem;
}

.radio_row {
    display: flex; 
    justify-content: center; 
    gap: 5px; 
    align-items: center;
    margin: 0 auto;
}

p {
    font-size: 14px;
}

label {
    font-size: 14px;
}

.small_paragraph {
    margin: 10px auto;
    padding-top: 20px;
    font-size: 12px;
}

.txt_area {
    width: 400px;
    height: 90px;
    border: 1px solid #e8f4e7;
}

.btn {
    padding: 5px 10px;
    border: 1px solid #e8f4e7;
}

/* Container to center the spinner over the page */
#loading-spinner {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.8); /* Slight transparent white overlay */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensure it stays on top */
}

/* The actual spinning circle */
.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3; /* Light grey */
    border-top: 5px solid #3498db; /* Blue */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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


#pluswrap {
  position: fixed;
  width: 100%;
  height:100%;
  display: flex;
  align-items: center;
  top: 0;
}

.plus {
  display: flex;
  margin: 0 auto;
}























