﻿/* Center the form on the page */
.container {
    max-width: 500px;
}

/* Style form headers */
h2 {
    font-size: 1.75rem;
    /*color: #505050;*/
    color: #446391;
}


.logo{
    max-width:400px;
    margin-bottom:30px;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Ensure it appears above other elements */
}

    .loading-overlay .spinner {
        text-align: center;
        /*color: #ffffff;*/
        background-color: white;
        padding:10px;
        border-radius:20px;
    }



.modal-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    /*text-align: center;*/
    max-width: 400px;
    width: 90%;
}

.message-box-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.section-header {
    font-size: 15px;
    font-weight: 500;
    /* text-decoration: underline; */
    border-bottom: 1px solid #575757;
    margin-bottom: 10px;
    margin-top: 30px;
    color: #4a4a4a;
}

.contact-info{
    margin-top:30px;
    /*font-size:1px;*/
}

.spinner{
    display: inline-block;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.card-on-file {
    /*height:50px;*/
    /*width:200px;*/
    border: 1px solid #d1d1d1;
    margin-bottom: 14px;
    border-radius: 10px;
    padding: 10px;
    position: relative;
    display:flex;
}

.card-on-file-brand{
    margin-right:10px;
    align-content:center
}

    .card-on-file-brand i {
        font-size: 40px;
        color: #21477e;
    }

    .card-on-file-details {
    }

.card-on-file-actions{
    position:absolute;
    top:10px;
    right:10px;
}

.card-on-file-action {
    cursor: pointer;
    color: #21477e;
}

    .card-on-file-action:hover {
        color: #3e8afa
    }

.card-on-file-detail-primary {
    font-weight: bold;
    color: #4d4d4d;
}

.card-on-file-detail-secondary {
    color: #626262;
}