@import url("https://fonts.googleapis.com/css?family=Montserrat");

body {
  font-family: "Montserrat", sans-serif;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Montserrat", sans-serif !important;
}
.footer-links {
  font-family: "Montserrat", sans-serif !important;
}
footer img,
header img {
  width: 100%;
}
.logo {
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .logo img {
    width: 100%;
    padding: 10px;
  }
}
@media only screen and (min-width: 768px) {
  .logo img {
    width: 420px;
    padding: 10px;
  }
}
small.text-muted {
  color: red !important;
  font-weight: bold;
}
.logo h1 {
  font-weight: bold;
  color: #082774;
}

input.error {
    outline: 1px solid red !important;
}

.error.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #ff0000ab;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgb(255 0 0 / 24%);
}

label.error {
    color: red;
    font-size: small;
    font-weight: 600;
    text-transform: capitalize;
}
input,select{
	box-shadow: none !important;
    outline: none !important;
}
textarea{
	resize:none;
	height:120px;
	box-shadow: none !important;
    outline: none !important;
}
.button-group {
            display: flex;
            flex-direction: column;
            gap: 20px;
            max-width: 400px;
            margin: auto;
        }
        .button-group a {
			text-align: center;
            text-decoration: none;
            background-color: #0054a6;
            color: white;
            padding: 15px 25px;
            font-size: 16px;
            border-radius: 8px;
            transition: background-color 0.3s ease;
        }
        .button-group a:hover {
            background-color: #003d7a;
        }
        @media (max-width: 500px) {
            .button-group a {
                font-size: 14px;
                padding: 12px 18px;
            }
        }