:root {
    --background-primary-color: #232f69;
    --background-primary-hover-color: #fff;
}

.input {
    padding: .375rem .75rem;
    width: 100%;
    border: 1px solid #ced4da;
    box-sizing: border-box;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.button {
    border-radius: .25rem;
    background-color: var(--background-primary-color);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff !important;
    height: 43px;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0);

}

.button:hover {
    color: var(--background-primary-color) !important;
    background-color: var(--background-primary-hover-color);
    border-color: var(--background-primary-color);
    cursor: pointer;
}

.form-control {
    display: block;
    padding: 5px;
    /* width: 100%; */
    /* height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem; */
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    -webkit-transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    -o-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
}

.form {
    padding: 0.5rem;
    display: grid;
    gap: 0.5rem;
}

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 8px;
    z-index: 1001;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.popup-close {
    position: absolute;
    top: 0;
    right: 0;
    border: none;
}

#popup-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.icon {
    height: 30px;
    width: 30px;
}

.icon:hover {
    cursor: pointer;
}