:root {
    --hrw-blue: #2683C5;
    --hrw-orange: #EC6822;
    --hrw-green: #369B32;
}

html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@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;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f6f9;
    margin-bottom: 60px;
}

/* =============== */

.container {
    margin-top: 50px;
}

.card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 0px;
    overflow: hidden;
}

.card-header {
    font-size: 1.5rem;
    background-color: #fff !important;
    color: black !important;
}

.card-header i {
    margin-right: 0.5rem;
}

.card-body p {
    font-size: 1.1rem;
    color: #333;
}

/* Buttons */
.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.25rem;
    border-radius: 25px;
}

.btn-lg i {
    margin-right: 0.5rem;
}


.btn-primary {
    background-color: #2683C5;
    border-color: #2683C5;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
    background-color: #1e6aa7;
    border-color: #1e6aa7;
}

.btn-danger {
    background-color: #EC6822;
    border-color: #EC6822;
}

.btn-danger:hover,
.btn-danger:active,
.btn-danger:focus {
    background-color: #d95f1f !important;
    border-color: #d95f1f !important;
}

.btn {
    border-radius: 100px;
}