﻿body {
    font-family: 'Roboto', sans-serif;
    color: #0c0c0c;
    background-color: #ffffff;
    overflow-x: hidden;
}

a,
a:hover,
a:focus {
    text-decoration: none;
}

    a:hover,
    a:focus {
        color: initial;
    }

.btn,
.btn:focus {
    outline: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.login_section {
    height: auto;
    margin-top: 150px;
}

.login-form {
    width: 100%;
}

.btn-forget {
    padding: 5px 25px;
    color: black;
    text-align: center;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all .3s;
    background-color: #ccca00;
}

.btn-sign {
    padding: 5px 25px;
    color: black;
    text-align: center;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all .3s;
    background-color: #ff6a00;
}

.custom-checkbox .sign-input {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 2px solid #0d6efd;
    background-color: #fff;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

    .custom-checkbox .sign-input:checked {
        background-color: #0d6efd;
        border-color: #0d6efd;
    }

.custom-checkbox .sign-input {
    border-radius: 50%;
}
.form-check-label {
    margin-left: 5px;
    vertical-align: text-bottom;
}
.custom-checkbox .sign-input:checked ::before {
    content: '✔';
    display: block;
    color: white;
    font-size: 14px;
    text-align: center;
    line-height: 18px;
}
