html, body{
    height: 100%; 
    margin: 0;
    padding: 0;
    font-family: 'Quicksand' !important ;
}

.wrapper{
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

main {
    flex-grow: 1;        
}

.link{
    text-decoration: none;
    color: #004AAD;
}

a:hover {
    text-decoration: underline; 
}

.login {
    font-weight: bold;
    color: var(--color-default);
}

footer {
    background-color: #004AAD;
    color: white;
    padding:5px;
    font-size: 11px !important;
}

.by{
    font-size: 9px;
}

.login, .reset, .success{
    margin-top: 180px;
}

#submitForm {
    display: none; 
}

#submitBtn{
  display: none;
}

.spinner {
  display: none;
  margin: auto;
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border-top: 4px solid #3498db;
  width: 40px;
  height: 40px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/** Login **/

.side-content{
    font-size: 15px; 
    background-color: rgba(13, 66, 255, 0.1); 
    padding: 50px; 
    border-radius: 20px;
}

  .reset-wrapper {
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .reset-card {
    width: 100%;
    max-width: 500px;
    padding: 2rem;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }

