/* @import url('https://fonts.googleapis.com/css2?family=Bree+Serif&display=swap'); */

body {
    height: 100vh;
    background: url('../../images/bg1.jpeg') center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#boxContainer {
    box-shadow: -3px -2px 40px 34px rgba(125, 122, 122, 0.84);
}

.logo {
    font-family: 'Bree Serif', serif;
    text-align: right;
    font-size: 15px;
}

.foot {
    font-family: 'Bree Serif', serif;
    text-align: center;
    font-size: 14px;
}

.img-left {
    width: 50%;
    background: url('../../images/Wave.png') center;
    background-size: cover;
}

.login_img {
    width: 300px;
    margin: 45px 15px;
}

.card-body {
    padding: 2rem;
}

.title {
    margin-bottom: 2rem;
}

.form-input {
    position: relative;
}

.form-input input {
    width: 100%;
    height: 45px;
    padding-left: 40px;
    margin-bottom: 20px;
    box-sizing: border-box;
    box-shadow: none;
    border: 1px solid #00000020;
    border-radius: 50px;
    outline: none;
    background: transparent;
}

.form-input select {
    width: 100%;
    height: 45px;
    padding-left: 40px;
    margin-bottom: 20px;
    box-sizing: border-box;
    box-shadow: none;
    border: 1px solid #00000020;
    border-radius: 50px;
    outline: none;
    background: transparent;
}

.form-input span {
    position: absolute;
    top: 10px;
    padding-left: 15px;
    color: #720094;
}

.form-input input::placeholder {
    color: black;
    padding-left: 0px;
}

.form-input input:focus::placeholder {
    color: #454b69;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background-color: #007bff !important;
    border: 0px;
}

.form-box button[type="submit"] {
    margin-top: 10px;
    border: none;
    cursor: pointer;
    border-radius: 50px;
    background: #720094;
    color: #fff;
    font-size: 90%;
    font-weight: bold;
    letter-spacing: .1rem;
    transition: 0.5s;
    padding: 12px;
}

.form-box button[type="submit"]:hover {
    background: #0069d9;
}