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-bottom: 60px;
    /*background-color: #c9dde1;*/
    background-image: linear-gradient(to right,#C9DDE1,#91c3d9,#C9DDE1);
}

.login-container, .candidates-table {
    margin-left: auto;
    margin-right: auto;
    background-color: #fff;
    padding: 30px 60px;
    border-radius: 20px;
    box-shadow: 0px 0px 30px 10px rgba(0,0,0,0.25);
}

.login-container {
    margin-top: 150px;
}

.candidates-table {
    margin-top: 50px;
}

.login-container h2{
    text-align: center;
}

.login-container button:hover{
    transform: scale(1.03);
    transition: .2s;
}

.title-zone {
    background-color: #fff;
    padding: 30px 60px;
    margin-top: 50px;
    border-radius: 20px;
    box-shadow: 0px 0px 30px 10px rgba(0,0,0,0.25);
    width: 100%;
}
.candidates-table table {
    margin-top: 20px;
    text-align: center;
}
.candidates-table table thead {
    background-color: #212121;
    color: #d0d0d0;
    font-weight: 600;
}

.candidates-table table thead {
    background-color: #212121;
    color: #d0d0d0;
    font-weight: 600;
    
   /* border-top-left-radius: 20px;
    border-top-right-radius: 20px;*/
}

.edit-user:hover i {
    transform:scale(1.3);
    transition: .2s;
}
.delete-user:hover i {
    transform: scale(1.3);
    transition: .2s;
}

.loader-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.loader {
    border: 8px solid #f3f3f3;
    border-radius: 50%;
    border-top: 8px solid #3498db;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -30px;
    margin-left: -30px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}