@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;700&display=swap');

body {
    font-family: "Source Sans Pro", sans-serif;
    background-color: #f8f9fa;
}
.container {
    max-width: 450px;
    margin: auto;
}
.registration-form {
    width: 100%;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.logo {
    display: block;
    margin: 0 auto 20px;
    max-width: 100%;
}

label {
    color: #6A0032;
    font-weight: bold;
    font-size: 1.11875rem;
}

input {
    color: #505050;
    border: .0625rem solid #cacaca;
    border-radius: .3125rem;
    width: 100%;
    height: 39px;
    font-size: 1rem;
    margin-top: 5px;
    transition: 0.5s;
}

input[type]:focus {
    border: 1px #9d004a solid;
}

.btn-lso {
    color: #fff;
    background-color: #6A0032;
    border: .0625rem solid #B21E5E;
    cursor: pointer;
    display: inline-block;
    line-height: 1.5rem;
    margin: .25rem;
    padding: .5rem 3rem;
    transition: all 300ms ease-in-out;
    border-radius: .2rem;
    background-clip: padding-box;
}

.btn-lso:hover {
    background-color: #9d004a;
    color: #fff;
}
.modal-body-text {
    font-size: 20px!important;
}
.modal-title-text {
    font-size: 24px!important;
    font-weight: bold;
}