@font-face {
    font-family: 'raleway-med';
    src: url('https://3hs-static.nyc3.digitaloceanspaces.com/static/fonts/Raleway/Raleway-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'inter-reg';
    src: url('https://3hs-static.nyc3.digitaloceanspaces.com/static/fonts/Inter/Inter-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'inter-med';
    src: url('https://3hs-static.nyc3.digitaloceanspaces.com/static/fonts/Inter/Inter-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'inter-thin';
    src: url('https://3hs-static.nyc3.digitaloceanspaces.com/static/fonts/Inter/Inter-Thin.ttf') format('truetype');
}
@font-face {
    font-family: 'inter-bold';
    src: url('https://3hs-static.nyc3.digitaloceanspaces.com/static/fonts/Inter/Inter-Bold.ttf') format('truetype');
}
.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://3hs-static.nyc3.digitaloceanspaces.com/static/images/getstartedbg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}


.rcontainers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://3hs-static.nyc3.digitaloceanspaces.com/static/images/getstartedbg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}
body {
    font-family: 'inter-reg', system-ui, sans-serif !important;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    position: relative;
}

.logo {
    width: 70%;
    margin-bottom: 40px;
}
.rlogo {
    width: 55%;
    margin-bottom: 40px;
}

.rcontainers {
    font-family: 'inter-reg', system-ui, sans-serif !important;
    background-color: #f9f9f9;
    background-color: t#f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    position: relative;
}
.rcontainer {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    background-color: #fff;
  
    border-radius: 10px;
    border: 0.2px solid #4731b6;
    text-align: center;
    margin: auto;
    position: relative;
    z-index: 1;
    height: auto;
}
.container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    border: 0.2px solid #4731b6;
    text-align: center;
    margin: auto;
    position: relative;
    z-index: 1; 
    height: auto;
}
h1 {
    font-size: 14.6px;
    color: #4731b6;
    font-family: 'inter-thin', system-ui, sans-serif !important;
}
h2 {
    font-size: 16px;
    color: #4731b6;
    font-family: 'inter-bold', system-ui, sans-serif !important;
}
h3 {
    font-size: 16px;
    color: #4731b6;
    font-family: 'inter-bold', system-ui, sans-serif !important;
}
form {
    display: flex;
    flex-direction: column;
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.rform-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


input[type="text"],
input[type="password"],
input[type="email"],
input[type="date"],
input[type="time"] {
    width: 60%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'inter-reg', system-ui, sans-serif !important;
}
input[type="checkbox"] {
    margin-right: 10px;
}
label {
    text-align: center;
}

button {
    padding: 10px;
    background-color: #4731b6;
    color: white;
    width: 65%;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'inter-med', system-ui, sans-serif !important;
}

button:hover {
    background-color: #3946b5;
}

a {
    color: #4731b6;
    text-decoration: none;
    margin-top: 10px;
    font-family: 'inter-med', system-ui, sans-serif !important;
}
a:hover {
    text-decoration: underline;
}
.error-messages {
    list-style-type: none;
    padding: 0;
    color: red;
    text-align: left;
    font-family: 'inter-reg', system-ui, sans-serif !important;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    padding-top: 60px;
}
.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 55%;
}
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}