.modal-dialog {
    max-width: 1000px;
    width: 100%;
    margin: 25px auto;
}

.modal-content {
    border-radius: 20px;
    max-width: 90%;
}

.modal-header {
    border-bottom: none;
    position: absolute;right: 20px;
    top: 20px;
}

.modal-header .btn-close {
    z-index: 20;
}

.modal-dialog .left-card {
	background-color: #253565;    
    border-radius: 12px;
    padding: 2rem;
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.modal-dialog .left-card p {
    color: #fff;
}

.modal-body {
    padding: 15px;
}

.modal-dialog .left-card ul {
    margin-top: 4rem;
}

.modal-dialog .left-card ul li {
    display: flex;
    margin-bottom: 1.5rem;
    align-items: flex-start;
    flex-direction: column;
}

.modal-dialog .left-card ul li i {
    flex-shrink: 0;
    margin-right: 1.75rem;
    font-size: 15px;
    line-height: 23px;
}

.modal-dialog .left-card ul li a, 
.modal-dialog .left-card ul li {
    font-size: 15px;
    line-height: 23px;
    color: #fff;
    text-decoration: none;
}

.modal-dialog .left-card ul li a:hover {
	color: #13d1ff;
}

.modal-backdrop.show {
    opacity: .15;
}

.btn {
	background-color: #253565;
	border: 2px solid #253565;
	color: white;
	padding: 10px 30px;
	border-radius: 5px;
	cursor: pointer;
	display: inline-block;
	text-transform: uppercase;
	font-weight: bold;
	transition: 0.5s;
    width: auto;
}

.btn:hover {
	background-color: #fff;
	color: #253565;
	border: 2px solid #253565;
}

form {
	margin-top: 45px;
    padding: 0 1.5rem;
}

label {
    color: #000;
    font-size: 17px;
}

.form-control {
    border-width: 0 0 1px 0;
    border-color: #000;
    border-radius: 0;
}

@media (min-width: 500px) {
    .modal-body {
        padding: 30px 30px 30px 15px;
    }

    .modal-dialog .left-card ul li {
        flex-direction: row;
        margin-bottom: 2.5rem;
    }
}