﻿@font-face {
    font-family: 'Roboto-bold';
    src: url('../../fonts/Roboto-VariableFont_wdth,wght.ttf'), url('../../fonts/Roboto-VariableFont_wdth,wght.ttf');
    font-weight: 400;
    font-style: normal;
}


.main-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 150px);
    padding-top: 50px;
    padding-bottom: 50px;
}

.form-subtitle {
    color: #252525;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

    .form-subtitle::after {
        content: '';
        display: block;
        width: 50px;
        height: 3px;
        background: #0bbc5a;
        margin: 10px auto 0;
        border-radius: 2px;
    }

.btn-primary {
    background-color: #0bbc5a;
    border: none;
    border-radius: 50px;
    padding: 12px 60px;
    color: fffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

    .btn-primary:hover {
        background-color: #828590;
        transform: translateY(-2px);
    }

.form-control, .form-select {
    font-size: 0.9rem;
    padding: .65rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
}

    .form-control:focus, .form-select:focus {
        border-color: #0bbc5a;
        box-shadow: 0 0 0 .25rem rgba(0,188,90,.2);
    }

.validation-summary-errors, .recaptcha-message {
    color: #d9534f;
    font-size: 0.9rem;
    margin-top: 10px;
    text-align: center;
}

.custom-card {
    border-radius: 20px;
    border: 1px solid #e0e0e0;
}

form {
    font-weight: 400;
    font-family: "Roboto-bold", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}