* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'MuseoSansRounded';
  src: url(./../fonts/MuseoSansRounded900.otf);
}

html {
  overflow-x: hidden;
  font-family: 'Roboto', sans-serif;
}

:root {
  --pureWhite: #ffffff;
  --white : #e8f1f3;
  --darkBlue: #2d74bb;
  --backgroundHeader: #4392e2;
  --backgroundNav: #2967a4;
  --lightBlue: #00e8ff;
  --aqua: #c7f7ff;
  --yellow: #fff45f;
  --darkYellow: #ffe753;
  --black: #010101;
  --pureBlack: #000000;
  --red: #ee2929;
  --lightBrown: #DFA24C;
  --brown: #8a5202;
  --lightGray: #b9c8cb;
  --gray: #3b3b3b;
}

main {
  min-height: 100vh;
}

.alert {
  position: relative;
  padding: 1rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 4rem;
}

.alert-dismissible .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 1.25rem 1rem;
}

.alert-primary {
  color: #084298;
  background-color: #cfe2ff;
  border-color: #b6d4fe;
}

.alert-primary .alert-link {
  color: #06357a;
}

.alert-secondary {
  color: #41464b;
  background-color: #e2e3e5;
  border-color: #d3d6d8;
}

.alert-secondary .alert-link {
  color: #34383c;
}

.alert-success {
  color: #0f5132;
  background-color: #d1e7dd;
  border-color: #badbcc;
}

.alert-success .alert-link {
  color: #0d3e22;
}

.alert-info {
  color: #055160;
  background-color: #cff4fc;
  border-color: #b6effb;
}

.alert-info .alert-link {
  color: #04414d;
}

.alert-warning {
  color: #664d03;
  background-color: #fff3cd;
  border-color: #ffecb5;
}

.alert-warning .alert-link {
  color: #523e02;
}

.alert-danger {
  color: #842029;
  background-color: #f8d7da;
  border-color: #f5c2c7;
}

.alert-danger .alert-link {
  color: #6a1a21;
}

.alert-light {
  color: #636464;
  background-color: #fefefe;
  border-color: #fdfdfe;
}

.alert-light .alert-link {
  color: #4f5050;
}

.alert-dark {
  color: #141619;
  background-color: #d3d3d4;
  border-color: #bcbebf;
}

.alert-dark .alert-link {
  color: #101214;
}

.input-error {
    border: 2px solid #e3342f;
    background-color: #fdd;
    /* margin-bottom: 12px; */
}

.error-message {
    color: #e3342f;
    font-size: 0.875em;
    /* margin-top: 0.25em; */
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.form-group {
    display: flex;
    flex: 1;
    flex-direction: column;
    margin-bottom: 10px;
}
.input-group {
    position: relative;
}

.input-group-addon {
    cursor: pointer;
    position: absolute;
    left: 10px;
    top: 13px;
    display: flex;
    align-items: center;
}

.form-control {
    width: 100%;
    padding-left: 40px;
    border-radius: 4px;
    border: 1px solid #ccc;
    height: 40px;
    font-size: 16px;
}

.error-message {
    color: red;
    /* margin-top: 5px; */
}

.custom-select-container {
    position: relative;
    width: 100%;
}

#country-search {
    width: 90%;
    padding-left: 40px;
    margin-right: -1px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-top: 2px;
}

.country-selector {
    position: absolute;
    top: 45px;
    left: 0;
    width: 100%;
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 99;
    max-height: 200px;
    overflow-y: scroll;
}

.country-option {
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.country-option:hover {
    background-color: #f1f1f1;
}

.country-option img {
    margin-right: 10px;
    width: 20px;
    height: 15px;
}
