@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
   --accent: #6400ff;
}

* {
   outline: none;
   transition: all .2s;
   color: #111;
   line-height: 1.5em;
   font-family: "Open Sans", serif;
   transition: all .2s;
}
html, body {
   margin: 0;
   padding: 0;
}
body {
   background: url(../images/bg.jpg) no-repeat;
   background-position: center;
   background-size: cover;
   color: #10002d;
   position: relative;
   height: 100%;
}
body::before {
   position: absolute;
   content: '';
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: #fff;
   opacity: .95;
}
.wrap {
   position: relative;
   max-width: 1040px;
   margin: 0 auto;
   z-index: 99;
}
h1, h2, h3, h4, h5, h6 {
   margin: 20px 0;
}
ol, ul {
   padding:0 0 0 20px;
   margin: 0 0 20px;
}
li {
   margin: 0 0 10px;
}
li:last-child {
   margin: 0;
}
p {
   margin: 0 0 20px;
}
p:last-child {
   margin: 0;
}
img {
   max-width: 100%;
}
a {
   display: inline-block;
   outline: none;
   border: none;
}
.grey {
   color: #aaa;
}

header {
   padding: 20px 0;
}
header .flex {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   align-items: center;
}
header img{
   width: auto;
   height: 100px;
}


ul.menu {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}
ul.menu li {
   margin: 0;
}
ul.menu li a {
    display: block;
    text-decoration: none;
    position: relative;
    padding: 5px 0;
}
ul.menu li a::after {
    position: absolute;
    content: '';
    height: 2px;
    width: 0;
    background: var(--accent);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}
ul.menu li:hover a::after {
    width:100%;
}

.section {
   padding: 30px 0;
}

.twocol {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   gap: 30px;
}
.twocol .col {
   width: calc(100% / 2 - 20px);
}

.twocol .col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.twocol .col ul li {
    position: relative;
    display: block;
    margin: 0 0 20px;
}

.twocol .col ul li:last-child {
    margin: 0;
}

.title_bar h1 {
    margin: 20px 0 0;
    padding: 0;
}

hr {
    margin: 30px 0;
    border: .6px solid rgba(0,0,0,.15) !important;
    display: block;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.form-row p {
    width: calc(100% / 2 - 10px);
}

.form-row label {
    display: block;
    margin: 0 0 5px;
    font-weight: 600;
    font-size: 12px;
}

.form-row input, 
.form-row select, 
.form-row textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    resize: none;
}

.form-row.full-row p {
    width: 100%;
}

.form-row input[type="radio"],
.form-row input[type="checkbox"] {
   width: auto;
}

.margintopbottom {
   margin: 10px 0;
}

.form-row button {
   background: var(--accent);
   color: #fff;
   width: 100%;
   padding: 10px;
   border-radius: 5px;
   cursor: pointer;
   border: none;
}
.form-row button:hover {
   opacity: .8;
}

.agreement_checkbox {
    display: flex !important;
    gap: 10px !important;
    align-items: flex-start !important;
}

.form_side {
    padding: 30px;
    background: rgba(0, 0, 0, .03);
    box-sizing: border-box;
    border-radius: 5px;
    box-shadow: 0 0 15px 1px rgba(0,0,0,.15);
    backdrop-filter: blur(40px);
}

.form_side h2 {
    margin-top: 0;
}


.alert {
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
    font-size: 14px;
}

.alert-primary {
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff;
}

.alert-secondary {
    color: #383d41;
    background-color: #e2e3e5;
    border-color: #d6d8db;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

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

.alert-dark {
    color: #1b1e21;
    background-color: #d6d8d9;
    border-color: #c6c8ca;
}

@media (max-width: 800px){
   header, main {
      padding-left: 20px;
      padding-right: 20px;
   }
   header .flex {
      flex-direction: column;
   }
   ul.menu {
      display: flex;
      flex-wrap: wrap;
      gap: 5px 30px;
      justify-content: center;
      margin: 10px 0 0;
   }
   .twocol .col {
      width: 100%;
   }
}