html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}
body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
}

.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 1px solid #ccc;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
 
}

input[type="file"] {
    display: none; /* Hide the default file input */
    margin-top: auto;
    margin-bottom: auto;
}

label {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    margin-top: auto;
    margin-bottom: auto;
    display: inline-block;
}

label:hover {
    background-color: #0056b3;
}

button {
    padding: 10px 20px;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    margin-top:auto;
    margin-bottom:auto;
    margin-left:20px;
}

button:hover {
    background-color: #0056b3;
}
#file-name {
    margin-top: 30px;
    font-size: 14px;
    color: #333;
}
.logo-image {
    margin-bottom: 60px;
    width: 50%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}
.image-container {
    display:flex;
    justify-content:center;
}
.inner-form{
    display:flex;
    height:30px;
    flex-direction:row;
}
.spinner {
    border: 4px solid #f3f3f3; /* Light grey */
    border-top: 4px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 20px;
    height: 20px;
    position: relative;
    margin-left:10px;
    z-index:2;
    transform: translateY(-50%);
    animation: spin 1s linear infinite;
}
.spinner visible{
    display:none;
}
.submit-button {
    background-color: grey;
    opacity: 0.2;
}
.ready {
    
    background-color: #007bff;
    opacity: 1.0;
}
.spinner-container {
    justify-content: center;
    align-items: center;
    margin-top: auto;
    display: flex;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}