.main-block{
    background-color: hsl(var(--main),10%,15%);
    color: #fff;
    padding: 20px;
}

.collumdis{
    flex-direction: column;
    padding: 21px 22px;
    position: relative;
    border-radius: 8px;
}

.title-block{
    height: 125px;
    display: flex;
    align-items: center;
    place-content: center;
}

.icon-block{
    height: 125px;
    display: flex;
    align-items: center;
    place-content: center;
}

.selection-block{
    height: 175px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    margin: 5;
    border-radius: 7px;
    transition: 0.2s ease;
    background: hsl(var(--main),10%,25%);
}

.selection-block:hover{
    box-shadow: 1px 1px 13px -5px #000;
    transform: translateY(-5px);
}

.title:not(:last-child){
    margin-bottom: 1.5rem;
}

.title{
    text-align: center;
}

.subtitle{
    color: #e6a5b5;
    font-weight: 400;
    line-height: 1.25;
}

a.single-menu{
    color: inherit;
}

a.single-menu:hover{
    color: inherit;
}

input:focus{
    outline: 0;
}

button:focus{
    outline: 0;
}

.is-auth {
    width: 485px;
    border-radius: 36px;
}

.dialog {
    font-size: 14px;
    margin-bottom: 10px;
}

.box {
    padding: 2.25rem 1.75rem;
}

input.input {
    height: 46px;
}

.control.has-icons-left .icon, .control.has-icons-right .icon {
    height: 46px;
}

/* Change autocomplete styles in WebKit */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 1px solid rgba(0, 128, 0, 0);
  -webkit-text-fill-color: rgb(255, 255, 255);
  -webkit-box-shadow: 0 0 0px 1000px rgba(0, 0, 0, 0) inset;
  transition: background-color 5000s ease-in-out 0s;
}

@media only screen and (max-width: 770px) {
    .is-auth {
        width: 500px;
    }
    .icon-block{
        height: 125px;
        display: none;
        align-items: center;
        place-content: center;
    }
}

@media only screen and (max-width: 500px) {
    .is-auth {
        width: initial;
    }
    .icon-block{
        height: 125px;
        display: none;
        align-items: center;
        place-content: center;
    }
}
/* =====================================================================
   OBSIDIAN VIOLET — auth (login / register / verify) refinements
   ===================================================================== */

.main-block.is-auth {
  background: var(--card) !important;
  border: 1px solid var(--card-border) !important;
  border-radius: 26px !important;
  box-shadow: 0 24px 70px rgba(0,0,0,0.6) !important;
  overflow: hidden;
}
.is-weeb {
  background: linear-gradient(135deg, var(--accent-2), var(--accent)) !important;
  position: relative; overflow: hidden;
}
.is-weeb::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 140% at 80% 0%, rgba(255,255,255,0.18), transparent 60%);
}
#regtitle { color: #fff !important; font-weight: 800; }
.subtitle { color: var(--text-dim) !important; }

.box .login-bg { display: none; }
.dialog { color: var(--text-dim); }
.dialog a { color: var(--accent-soft); font-weight: 600; }

/* verify page steps */
.howto-number {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff; border-radius: 50%; width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center; font-weight: 800;
  box-shadow: 0 0 16px rgba(168,85,247,0.5);
}
.is-headericon { color: var(--accent-soft); filter: drop-shadow(0 0 12px rgba(168,85,247,0.5)); }
.loading-anim .fa-circle-notch { animation: spin 1.4s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
#discord { transition: transform .2s ease; }
#discord:hover { transform: translateY(-3px); }

.paper-snackbar {
  border-radius: 14px !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.5);
}
.paper-snackbar.is-success { background: linear-gradient(135deg, #2bb673, #1f9d5e) !important; }
.paper-snackbar.is-error { background: linear-gradient(135deg, #d6455d, #b3243b) !important; }
