
@import url('https://fonts.cdnfonts.com/css/poppins');

:root {
    --login_bg: #E1D5BC;
    --login_bg_1: #f6eee3;
    --green_1: #415A44;
    --btn_green_1: #59b097;
    --btn_blue_1: #4185f4;
    --hyperlink_red: #ff5c76;
    --hyperlink_blue: #4185f4;
    --border_blue: #1c4b80;
}

body {
    background: #FBFCF8;
}

.text-center {
        text-align: center;
}

.black-text {
    color: black;
}


* {
    font-family: 'Poppins', sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
}

.text-centered {
    text-align: center;
}

a.hyeperlink_red {
    color: var(--hyperlink_red);
}

a.hyeperlink_blue {
    color: var(--hyperlink_blue);
}

a.hyeperlink_black {
    color: black;
}

.btn-primary {
    width: 100%;
    background: var(--btn_green_1);
    border: none;
    font-weight: bold;
}

.btn-primary:hover {
    background: var(--green_1);
}

.btn-secondary {
    width: 100%;
    background: var(--btn_blue_1);
    border: none;
}

input.form-control {
    border: 1px solid #D9D9D9;
    padding: 10px 20px;
    font-weight: 500;
    /* border-bottom: 0.5px solid #aba3a3; */
    border-radius: 10px;
    margin-bottom: 1rem;
}

textarea.form-control
 {
    padding: 10px 20px;
    font-weight: 500;
    border: 0.5px solid #aba3a3;
    margin-bottom: 1rem;
        border-radius: 0;
}