#loginModal.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

#loginModal .modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 40px;
    border-radius: 1rem;
    width: 90%;
    max-width: 400px;
    position: relative;
}

#loginModal .modal-header {
    border-bottom: none;
    padding-bottom: 0;
}

#loginModal .modal-body {
    padding: 2rem;
}

#loginModal .form-control:focus {
    border-color: #1E90FF;
    box-shadow: 0 0 0 0.2rem rgba(30, 144, 255, 0.25);
}
