.login-container {
    border:1px solid gray;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    background-color: white;
    max-width: 400px;
    margin: 30px auto;
    padding:20px;
    text-align: center;
}

.overlay {
    position: fixed; /* Sit on top of the page content */
    display: none; /* Hidden by default */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(56, 48, 48, 0.4); /* Black background with opacity */
    z-index: 98; /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer; /* Add a pointer on hover */
} 

.overlay2 {
    position: fixed; /* Sit on top of the page content */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(56, 48, 48, 0.4); /* Black background with opacity */
    z-index: 97; /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer; /* Add a pointer on hover */
}

.newmodal {
    position: fixed; /* Sit on top of the page content */
    width:70%;
    height: 70%;
    background: white;
    top: 15vh;
    right: 15vw;
    left: 0;
    bottom: 0;
    border-radius: 20px;
    z-index: 100;
    padding:20px;
}

.loader {
  display: none;
  position: fixed; /* Sit on top of the page content */
  top: 40vh;
  right: 45vw;
  left: 0;
  bottom: 0;
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid #ffc107; /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
  z-index: 101;
}

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

body {
    background-color:darkgray;
}

.section {
    background-color: white;
    padding:10px;
    margin-top:10px;
}

.ceo-card {
    padding:10px;
    background: white;
    border-radius: 10px;
}

.card-title {
    font-size: 22px;
    font-weight: bolder;
}

.card-number {
    font-size: 30px;
    font-weight: bolder;
    text-align: center;
}
