@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Poppins:wght@400;500;600;700&family=Roboto:wght@400;500;700&display=swap');

:root {
    --black: #000000;
    --light: #e9e9e9;
    --primary: #89C975;
    --white: #ffffff;
}

/* General */
html {
    font-size: 62.5%;
}

body {
    font-size: 1.6rem;
    font-weight: 400;
}

h1,
h2,
h3,
p {
    margin-bottom: 0;
}

a {
    text-decoration: none;
}

.height-100 {
    height: 100vh;
}

.py-90 {
    padding-top: 9rem;
    padding-bottom: 9rem;
}

/* Section Login */
.body_bg {
    background: url('../images/login-bd/image_2024_08_22T16_39_03_708Z.png') center center no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
}

.section_form .margin-y {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.section_form .img-logo {
    height: auto;
    max-width: 13rem;
}

.section_form .card {
    background: rgba(0, 0, 0, 0.61);
    border: none;
    border-radius: 3rem;
}

.section_form .card .card-header {
    border-bottom: none;
    padding: 1rem 1rem 0;
    text-align: center;
}

.section_form .card .card-header .img-top {
    height: auto;
    max-width: 5rem;
}

.section_form .card .card-header .title {
    color: var(--white);
    font-size: 1.8rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    text-transform: capitalize;
}

.section_form .card .card-body {
    padding: 1rem 2rem 2rem;
    text-align: center;
}

.section_form .card .card-body .form-control {
    background: var(--light);
    border: none;
    border-radius: 0.7rem;
    color: var(--black);
    font-family: 'Roboto', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 2rem;
    padding: 0.8rem 1.7rem;
}

.section_form .card .card-body .form-control::placeholder {
    color: var(--black);
    font-family: 'Roboto', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
}

.section_form .card .card-body .form-control:focus {
    box-shadow: none;
}

.section_form .card .card-body .form-control::file-selector-button {
    font-weight: 500;
    color: var(--white);
    font-family: 'Roboto', sans-serif;
    font-size: 1.4rem;
    background: var(--primary);
    padding: 0.7rem 1.5rem;
    border-radius: 0.7rem;
}

.section_form .card .card-body .input-group-text {
    background: var(--light);
    border-radius: 0 0.7rem 0.7rem 0;
    padding: 0.8rem 1.5rem;
}

.section_form .card-body .input-group-text .img-icon {
    height: auto;
    max-width: 2rem;
}

.section_form .card-body .forget-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    margin-top: 1.5rem;
    text-align: end;
}

.section_form .card-body .forget-text > a {
    color: var(--white);
}

.section_form .card-body .btn {
    border-radius: 1rem;
    border: none;
    font-family: 'Roboto', sans-serif;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: 2rem;
    outline: none;
    padding: 1.4rem;
    text-transform: capitalize;
}

.section_form .card-body .btn-login {
    background: var(--primary);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.30);
    color: var(--white);
    margin: 2rem 0;
    width: 19.7rem;
}

.section_form .card-body .btn-loan-taker {
    background: var(--primary);
    color: var(--white);
    margin: 1rem 0;
    width: 19.7rem;
}

.section_form .card-body .btn-loan-giver {
    background: var(--light);
    color: var(--black);
    margin: 1rem 0;
    width: 19.7rem;
}

.section_form .card-body .btn-request {
    background: var(--black);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.30);
    color: var(--white);
    margin: 2rem 0 0;
    width: 22rem;
}

.section_form .card-body .btn-account {
    background: var(--primary);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.30);
    color: var(--white);
    margin: 2rem 0 0;
    width: 22rem;
}

.section_form .card-body .btn-login:hover,
.section_form .card-body .btn-request:hover,
.section_form .card-body .btn-loan-taker:hover,
.section_form .card-body .btn-account:hover {
    background: var(--black);
    color: var(--white);
}

.section_form .card-body .btn-loan-giver:hover {
    background: var(--black);
    color: var(--light);
}

.section_form .card-body .register-text {
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
}

.section_form .card-arrow {
    text-align: center;
    margin-bottom: -1.2rem;
}

.section_form .card-arrow .img-arrow {
    height: auto;
    max-width: 3rem;
}

.section_form .card-body .register-text a {
    color: var(--primary);
    font-weight: 600;
}

.img-vector {
    height: 1.5rem;
    max-width: 100%;
    width: 100%;
    object-fit: fill;
}

@media screen and (min-width:375px) {
    .img-vector {
        height: 2.5rem;
    }
}

@media screen and (min-width:768px) {
    .section_form .card .card-header .title {
        font-size: 2.4rem;
    }

    .section_form .card .card-body {
        padding: 1rem 4rem 2rem;
    }

    .section_form .card-body .register-text {
        font-size: 1.4rem;
    }
}

@media screen and (min-width:992px) {
    .section_form .card .card-header {
        padding: 2rem 1rem 0;
    }

    .section_form .card .card-header .title {
        font-size: 2.8rem;
    }

    .section_form .card .card-body {
        padding: 1rem 6rem 2rem;
    }

    .section_form .card .card-header .img-top {
        max-width: 6rem;
    }

    .section_form .card .card-body .form-control {
        padding: 1rem 1.7rem;
    }

    .section_form .card .card-body .input-group-text {
        padding: 1rem 1.5rem;
    }
}

@media screen and (min-width:1200px) {
    .section_form .card .card-body {
        padding: 2rem 10rem 3rem;
    }

    .section_form .card .card-header .img-top {
        max-width: 9rem;
    }
}