@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;700&display=swap');

.color-gray-1 {
    color: #434343;
}

.color-gray-2 {
    color: #686868;
}

body {
    font-size: 14px;
    background: #243549;
    font-family: Rubik, serif;
}

.div-center {
    position: absolute;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    padding: 0 3rem;
}

.content {
    padding: 48px 70px;
    border-radius: 16px;
    min-height: 626px;
    width: 500px;
    height: 626px;
}

.content:has(.alert) {
    height: min-content;
    max-height: min-content;
}

h1 {
    font-size: 24px;
    font-weight: 600;
    color: #0C0C0C;
}

@media only screen and (max-width: 576px) {
    .content {
        border-radius: 0;
        width: 100%;
        height: 100% !important;
        padding: 24px 24px 48px !important;
    }

    .div-center{
        padding: 0;
    }
}

input {
    color: #434343 !important;
}

input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #434343 !important;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder, ::-ms-input-placeholder {
    color: #434343;
}

.form-control:focus {
    border-color: #0C0C0C !important;
}

hr {
    border-top-color: #D9D9D9;
}

.custom-alert {
    padding: 20px !important;
    margin-bottom: 24px !important;
    border-radius: 8px;
    border: 0;
    background-color: #EFEFEF;
    display: flex;
    flex-direction: row;
    font-size: 14px;
    line-height: 22px;
}

.custom-alert img {
    align-self: center;
    padding-right: 8px;
}

.custom-alert > span {
    color: #2B2B2B;
    font-weight: 400;
}

.underlined-link, .underlined-link:hover {
    color: #F45C59;
    text-decoration: underline;
    font-weight: 600;
}

.underline {
    text-decoration: underline;
}

.btn-accent {
    font-size: 16px !important;
    font-weight: 600 !important;
}

.mb-16 { margin-bottom: 16px;}
.mt-16 { margin-top: 16px;}
.mb-24 { margin-bottom: 24px;}
.mt-24 { margin-top: 24px;}
.mb-25 { margin-bottom: 25px;}
.mb-30 { margin-bottom: 30px;}

.form-control {
    border-radius: 8px;
    border: 1px solid #D9D9D9;
}