﻿/*
    ------------------
    | Primary Button |
    ------------------
*/

.ui-widget {
    font-family: "SpaceGrotesk",Helvetica,Arial,serif !important;
}
.btn-primary {
    font-size: 1em !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 8px;
    font-size: .5em;
    font-weight: 500;
    /*text-transform: uppercase;*/
    letter-spacing: 0.5px;
    border: none;
    border-radius: 4px;
    color: #ffffff;
    background-color: #00005a;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    border: 1px solid #00005a;
    font-family: "SpaceGrotesk",Helvetica,Arial,serif;
}

    .btn-primary:hover {
        background: #00005a;
        color: white;
        font-weight: 500;
        border: 1px solid #00005a;
    }

    .btn-primary:focus {
        background: #00005a;
        color: white;
        outline: 2px solid #00005a;
        outline-offset: 2px;
    }

    .btn-primary:active {
        background-color: #00005a;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        font-family: "SpaceGrotesk",Helvetica,Arial,serif;
    }

    .btn-primary:disabled,
    .btn-primary[disabled] {
        /* background-color: #e0e0e0 !important;
        color: #b0b0b0 !important;*/
        border: 1px solid #d0d0d0 !important;
        cursor: not-allowed !important;
        box-shadow: none !important;
        opacity: 0.6 !important;
    }

        .btn-primary[disabled]:hover {
            cursor: not-allowed !important;
        }


.form-group {
    display: block;
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: bold;
    color: #1f2937;
    text-align: left;
    margin-bottom: 0.5rem;
    font-family: "SpaceGrotesk",Helvetica,Arial,serif;
}

.input-wrapper {
    margin-top: 0.5rem;
}

.form-input {
    display: block;
    width: 100%;
    border-width: 1px;
    border-style: solid;
    border-color: #d1d5db;
    border-radius: 0.375rem;
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #1f2937;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    outline: none;
    box-sizing: border-box;
    transition: box-shadow 0.2s, border-color 0.2s;
    font-family: "SpaceGrotesk",Helvetica,Arial,serif;
}
