main {
    width: 100%;
}

.container {
    height: 100%;
    margin: auto;
}

label {
    font-size: 16px;
    margin: 5px 0;
}

.login_wrap {
    background: linear-gradient(347.36deg, #000101 -3.38%, #0D1024 90.82%);
    background-clip: content-box;
    border-radius: 16px;
    padding: 1px;
    display: flex;
    position: relative;
    width: 100%;
    flex-direction: column;
    align-items: center;
    margin: auto;
}

.login_wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(221deg, rgba(25, 36, 51, 1) 0%, rgb(57 123 193) 50%, rgba(21, 44, 69, 1) 100%);
    border-radius: inherit;
    z-index: -1;
    padding: 1px;
    box-sizing: border-box;
}

.login_block {
    display: flex;
    flex-direction: column;
    padding: 50px 15px;
    max-width: 420px;
    width: 90%;
}

.title {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.subtitle {
    margin: 5px 0;
    font-size: 16px;
    color: #F6F8FA;
}

.form_wrap {
    display: flex;
    flex-direction: column;
    margin: 20px 0;
}

.form_block {
    display: flex;
    flex-direction: column;
    margin: 10px 0;
}

.input_form {
    background: linear-gradient(180deg, #000101 0.95%, #090A12 100.08%);
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #2c5b8d;
    font-size: 16px;
    font-family: 'Montserrat';
    color: #fff;
    outline: none;
    box-sizing: border-box;
    width: 100%;
}

.checkbox_block {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkbox_label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.custom_checkbox {
    position: relative;
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: linear-gradient(180deg, #000101 0.95%, #090A12 100.08%);
    border: 1px solid #2c5b8d;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom_checkbox::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: transparent;
    border-radius: 2px;
    transition: all 0.2s ease;
}

.checkbox_block input[type="checkbox"] {
    display: none;
}

.checkbox_block input[type="checkbox"]:checked + .custom_checkbox {
    background: linear-gradient(180deg, #001942 0.95%, #000101 100.08%);
    border-color: #0062FF;
}

.checkbox_block input[type="checkbox"]:checked + .custom_checkbox::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 10px;
    border: solid #0062FF;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    background: transparent;
    margin-bottom: 2px;
    margin-right: 0px;
}

.checkbox_text {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.link {
    color: #0062FF;
    text-decoration: none;
}

.btn {
    background: linear-gradient(261.22deg, #232E87 -27.9%, #001942 54.23%);
    border-radius: 24px;
    border: 1px solid #2c5b8d;
    padding: 18px;
    color: #fff;
    font-size: 16px;
    font-family: 'Montserrat';
    font-weight: 600;
    cursor: pointer;
    margin-top: 15px;
}

.already {
    margin: 10px auto;
    font-size: 14px;
}
