:root {
    --body-color: #232323;
    --grey-color: #f5f5f5;
}
html {
    font-size: 16px;
    scroll-behavior: smooth;
}
body {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: var(--body-color);
    background-color: #ffffff;
    line-height: 1.8;
}
img {
    max-width: 100%;
}
a {
    text-decoration: none;
    color: var(--theme-color);
    transition: all 0.6s ease-in-out;
}
a:hover {
    color: var(--body-color);
    transition: all 0.6s ease-in-out;
}
:focus {
    box-shadow: none !important;
}
.btn {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
    color: var(--link-color);
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    border-radius: 4px;
    padding: 0.5rem 1.5rem;
    text-transform: capitalize;
    transition: all 0.6s ease-in-out;
}
.btn-outline-primary {
    background-color: transparent;
    border-color: var(--theme-color);
    color: var(--theme-color);
}
.btn-outline-white {
    background-color: transparent;
    border-color: #ffffff;
}
.btn-outline-secondary {
    background-color: transparent;
    color: var(--theme-color);
    border-color: var(--theme-color);
}
.btn:hover, .btn:active,
:not(.btn-check) + .btn:active {
    background-color: var(--body-color);
    border-color: var(--body-color);
    color: var(--link-color);
    transition: all 0.6s ease-in-out;
}

.cn__authentication {
    background-color: var(--grey-color);
    position: relative;
    z-index: 1;
    min-height: 100vh;
}
label {
    margin-bottom: 3px;
    font-size: 14px;
}
label small {
    font-size: 10px;
}
.form-control {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    border: 1px solid rgba(35, 35, 35, 0.08);
}
.form-select {
    word-wrap: break-word;
    white-space: break-spaces;
}
.form-control:focus,
.form-control:focus + .input-group-text {
    border-color: var(--theme-color);
}
.cn__authentication .input-group-text {
    cursor: pointer;
    background-color: transparent;
    border-left: none;
    border-color: rgba(35, 35, 35, 0.08);
}
.cn__authentication .input-group-text svg {
    width: 0.875rem;
    height: 0.875rem;
}

@media (max-width: 767px) {
    .p-5 {
        padding: 1.5rem !important;
    }
}