* {
    margin: 0px;
    padding: 0px;
}

:root {
    font-family: 'Rubik', Tahoma, sans-serif;
    --primary: #EA5A43;
    --textPrimary: #171716;
    --textSecondry: #6B6B6B;
}

:root h3 {
    font-weight: 500;
    font-size: 28px;
    font-family: 'Rubik';
    color: var(--textPrimary);
}

:root p {
    font-weight: 400;
    font-size: 16px;
    font-family: 'Rubik';
    color: var(--textSecondry);
}

:root a {
    text-decoration: none;
}

input[type=text],
input[type=email],
input[type=password] {
    background-color: #F5F5F5;
    border-radius: 12px;
    border: none;
    font-family: 'Rubik';
    font-size: 16px;
    padding: 16px;
}

.form-control {
    margin-top: 20px !important;
}

.form-control:focus {
    border: 2px solid var(--primary);
    box-shadow: none;
}

:root button {
    width: 100%;
    height: 48px;
    background-color: var(--primary);
    box-shadow: 0px 9px 25px 0px #EA5A4359;
    border-radius: 8px;
    color: white;
    border: none;
    font-family: 'Rubik';
    font-weight: 400;
    font-size: 16px;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    background: url('../images/ptrn-bg.png');
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.card {
    border: none;
    box-shadow: 0px 4px 25px 0px #6B6B6B14;
    border-radius: 16px;
}

.card .card-body {
    border: none;
    padding: 48px 48px 32px 48px;
}

.card .card-footer {
    border: none;
    background-color: #EEF7FB;
    display: flex;
    justify-content: center;
    border-radius: 0px 0px 16px 16px;
    p {
        margin: 0px;
    }
}

.primary-color {
    color: var(--primary);
}

@media only screen and (max-width: 915px) {
    .container,
    .row,
    .col {
        padding: 0px;
        margin: 0px;
        height: 100%;
        width: 100%;
    }
    .card {
        height: 100vh;
        width: 100%;
        border-radius: 0px;
    }
    .card .card-body {
        border: none;
        padding: 48px 32px 24px 32px;
    }
    .card .card-footer {
        border-radius: 0px;
    }
}