:root {
    --r2krc: #1a73e8;
}
.container > * {
    width: 800px;
    margin: 30px auto 0;
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 0 15px -8px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}
.container > *:first-child {
    margin-top: 50px;
}
.container h1 {
    /* text-align: center; */
    margin-bottom: 30px;
    color: var(--r2krc);
}
.r2k_captcha_settings.hide {
    display: none;
}
.r2k_captcha_loader {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 5px solid transparent;
    border-top-color: #1a73e8;
    animation: rotate 1s ease 0s infinite;
}
@keyframes rotate {
  from {transform: rotate(0deg)}
  to {transform: rotate(360deg);}
}
.r2k_opt_table {
    width: 100%;
    margin-bottom: 20px;
}
.r2k_opt_table .r2k_captcha_field.hide {
    display: none;
}
.r2k_opt_table td,
.r2k_opt_table th {
    padding: 10px;
    text-align: start;
    vertical-align: top;
    position: relative;
}
.r2k_opt_table th {
    width: 170px;
    font-size: 16px;
}
.r2k_opt_table th label {
    line-height: 30px;   
}
.r2k_opt_table td label.cb {
    display: flex;
    align-items: center;
    gap: 7px;
}
.r2k_opt_table select,
.r2k_opt_table textarea,
.r2k_opt_table input:not([type="checkbox"]) {
    width: 100%;
    max-width: 100%;
    display: block;
}
.r2k_opt_table input[type="checkbox"] {
    margin: 0;
}
#r2k_recaptcha_settings button {
    /* margin: auto; */
    display: block;
}
.r2k_opt_table small {
    display: block;
    margin-top: 5px;
    line-height: 1.3;
    opacity: .7;
}
.showPasswordField {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  inset-inline-end: 20px;
  text-decoration: none;
}
.showPasswordField .dashicons {
    font-size: 18px;
    line-height: 20px;
}
.ip_detect {
    display: inline-block;
    line-height: 1;
    padding: 8px 15px;
    margin-top: 8px;
    background: #ededed;
    border-radius: 50px;
    font-size: 12px;
}
a.addmyip.button {
    margin-top: 7px;
    display: inline-block;
}
.r2k_opt_note,
.r2k_error {
    display: block;
}
.rce-status.suc,
.r2k_opt_note.success {
    color: limegreen;
}
.rce-status.err,
.r2k_opt_note.err,
.r2k_error {
    color: red;
}
.r2k_opt_note {
    margin-top: 15px;
}
.r2k_opt_note:empty {
    display: none;
}
.rce-status {
    font-size: 16px;
    line-height: 30px;
}
.rce-status.hide {
    display: none;
}
.rce-status span {
    font-weight: 700;
}
.rce-status span.dashicons,
.rce-status span.dashicons::before {
    font-size: 30px;
    height: 30px;
    width: 30px;
    line-height: 30px;
}
.rce-status span.dashicons {
    margin-inline-end: 10px;
}
.rce-status small {
    display: block;
    width: 100%;
    line-height: 20px;
}
.rce-status small pre {
  display: inline-block;
  font-weight: 400;
  margin: 0;
  padding: 0 10px;
  margin-inline-start: 5px;
}
.rce-status hr {
    margin: 15px 0 20px;
}
#validateRecaptcha {
    display: flex;
}
.re_loader {
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 3px solid transparent;
    border-top-color: var(--r2krc);
    box-sizing: border-box;
    animation: rotate 1s linear 0s infinite;
    border-radius: 50%;
}
@keyframes rotate {
    from {transform: rotate(0deg)}
    to {transform: rotate(360deg)}
}
