@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

.auth-container {
    width: 100%;
    background: url('https://cryptopro.thekinsmen.app/assets/themes/berry-classic/img/bg-img/auth.jpg');
    background-position: center;
    background-size: cover;
    min-height: 100vh;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-wrapper {
    max-width: 450px;
    padding: 40px 16px;
    width: 100%;
    background-color: #000000b3;
    border-radius: 15px;
}

.auth-logo {
    margin-bottom: 30px;
    text-align: center;
}

.auth-logo img {
    width: 150px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 16px;
    position: relative;
}

.form-control {
    height: 41px;
    width: 100%;
    padding: 8px 16px;
    max-height: 41px;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #ebebeb;
    font-size: 14px;
    outline: none;
    position: relative;
}

.form-group .psw-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    cursor: pointer;
}

.form-label {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 8px;
}

.auth-button {
    padding: 6px 14px;
    height: 41px;
    width: 100%;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

.auth-footer {
    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
}

.auth-footer p {
    font-size: 14px;
}

.auth-footer a {
    color: #f5820d;
    text-decoration: underline;
}

.input-group {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.captcha-input {
    border-radius: 5px 0 0 5px !important;
}

.captcha-text {
    flex: 1;
    background-color: #000;
    max-width: 100px;
    color: #fff;
    padding: 8px 16px;
    font-weight: 700;
}

.captcha-refresh {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #fff;
    padding: 8px 16px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.auth-checkbox-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.auth-checkbox {
    display: flex;
    align-items: center;
    gap: 6px;
}

.custom-checkbox {
    display: none;
}

.custom-checkbox-label {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.checkmark {
    position: relative;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    background-color: transparent;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkmark::after {
    content: '\f00c';
    font-family: 'Line Awesome Free';
    font-weight: 900;
    font-size: 12px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-checkbox:checked + .custom-checkbox-label .checkmark {
    background-color: var(--primary-color);
}

.custom-checkbox:checked + .custom-checkbox-label .checkmark::after {
    opacity: 1;
}

.auth-text {
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    color: #e2e8f0;
}

.forgot-password {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
}