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;
}
/* Center the login form */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #007bff, #0056b3);
}

/* Login Box */
.login-box {
    width: 380px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    text-align: center;
}

    /* Title */
    .login-box h2 {
        font-weight: bold;
        margin-bottom: 20px;
    }

    /* Input Fields */
    .login-box .form-control {
        border-radius: 8px;
        height: 45px;
        font-size: 16px;
    }

    /* Login Button */
    .login-box .btn-primary {
        width: 100%;
        background: #007bff;
        border-radius: 8px;
        padding: 12px;
        font-size: 16px;
    }

    /* Forgot Password */
    .login-box a {
        color: #007bff;
        text-decoration: none;
    }
