@import url('https://fonts.googleapis.com/css?family=Raleway:400,700');

@use postcss-preset-env {
    stage: 0;
  }
  
  /* config.css */
  
  :root {
    --baseColor: #606468;
  }
  
  /* helpers/align.css */
  
  .align {
    display: grid;
    place-items: center;
  }

.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

    .header h1 {
        color: gray;
    }

.input {
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .input p {
        font-size: 15px;
        font-weight: 500;
        color: gray;
        margin: 5px 0;
    }

    .input b {
        font-size: 14.5px;
        margin: 0 0 20px 0;
    }

.btn {
    width: 100%;
    text-align: center;
}

    .btn button {
        width: 100%;
        color: #fff;
        font-size: 17px;
        font-weight: 700;
        border: none;
        height: 40px;
        margin-top:5px;
        cursor: pointer;
        border-radius: 4px;
        pointer-events: none;
        background: #6e93f7;
        transition: all 0.2s ease;
    }

    .btn button.active {
        background: #4070f4;
        pointer-events: auto;
    }

form .btn button:hover {
    background: #0e4bf1;
}

.inputs {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    column-gap: 10px;
}

    .inputs input {
        height: 45px;
        width: 42px;
        border-radius: 6px;
        outline: none;
        font-size: 1.125rem;
        font-weight: 900;
        text-align: center;
        border: 1px solid #ddd;
    }

        .inputs input:focus {
            box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
        }

        .inputs input::-webkit-inner-spin-button,
        .inputs input::-webkit-outer-spin-button {
            display: none;
        }

.popup {
    width: 400px;
    z-index: 10000;
    background-color: #fff;
    border-radius: 6px;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translate(-50%,-50%) scale(0.1);
    text-align: center;
    padding: 0 30px 30px;
    color: #333;
    visibility: hidden;
    box-shadow: 0 0 10px #002;
    transition: transform 0.4s, top 0.4s;
}

    .popup .can button {
        width: 100px;
        margin-top: 5px;
        padding: 10px 0;
        background: #FF0000;
        color: #fff;
        border: 0;
        outline: none;
        font-size: 18px;
        border-radius: 4px;
        cursor: pointer;
        box-shadow: 0 5px 5px rgba(0,0,0,0.2);
    }

    .popup img {
        width: 100px;
        margin-top: -50px;
        border-radius: 50%;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

.open-popup {
    visibility: visible;
    top: 50%;
    transform: translate(-50%,-50%) scale(1);
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}

.spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border .75s linear infinite;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.2em;
}

  .box {
position: relative;
width: 400px;
height: 400px;
display: flex;
justify-content: center;
align-items: center;
/*background: repeating-conic-gradient(from var(--a),#ff2770 0%,#ff2770 5%, transparent 5%, transparent 35%,#ff2770 50%);*/
/*animation: animate 4s linear infinite;*/
border-radius: 20px;
  }

  .box::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
/*    background: repeating-conic-gradient(from var(--a),#45f3ff 0%,#45f3ff 5%, transparent 5%, transparent 35%,#45f3ff 50%);*/
   /* animation: animate 4s linear infinite;*/
    border-radius: 20px;
    animation-delay: -1s;
      }

      .box::after {
        position: absolute;
        content: '';
        inset: 8px;
        background: #2c3338;
        border-radius: 15px;
        border: 9px solid #25252b;
      }

.boxx {
    position: relative;
    width: 400px;
    height: 650px;
    display: flex;
    justify-content: center;
    align-items: center;
 /*   background: repeating-conic-gradient(from var(--a),#ff2770 0%,#ff2770 5%, transparent 5%, transparent 35%,#ff2770 50%);*/
  /*  animation: animate 4s linear infinite;*/
    border-radius: 20px;
}

    .boxx::before {
        position: absolute;
        content: '';
        width: 100%;
        height: 100%;
   /*     background: repeating-conic-gradient(from var(--a),#45f3ff 0%,#45f3ff 5%, transparent 5%, transparent 35%,#45f3ff 50%);*/
        /*animation: animate 4s linear infinite;*/
        border-radius: 20px;
        animation-delay: -1s;
    }

    .boxx::after {
        position: absolute;
        content: '';
        inset: 8px;
        background: #2c3338;
        border-radius: 15px;
        border: 9px solid #25252b;
    }

      @property --a{
        syntax: '<angle>';
        inherits: false;
        initial-value: 0deg;
      }

      @keyframes animate
    {
        0%
        {
--a: 0deg;
        }
        
        100%
        {
--a: 360deg;
        }
    }
  
  .grid {
    inline-size: 90%;
    margin-inline: auto;
    max-inline-size: 20rem;
    z-index: 10000;
  }
  
  /* helpers/hidden.css */
  
  .hidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  
  /* helpers/icon.css */
  
  :root {
    --iconFill: var(--baseColor);
  }
  
  .icons {
    display: none;
  }
  
  .icon {
    block-size: 1em;
    display: inline-block;
    fill: var(--iconFill);
    inline-size: 1em;
    vertical-align: middle;
  }
  
  /* layout/base.css */

:root {
    --htmlFontSize: 100%;
    --bodyBackgroundColor: #838584;
    --bodyColor: var(--baseColor);
    --bodyFontFamily: "Open Sans";
    --bodyFontFamilyFallback: sans-serif;
    --bodyFontSize: 0.875rem;
    --bodyFontWeight: 400;
    --bodyLineHeight: 1.5;
}
  
  * {
    box-sizing: inherit;
  }
  
  html {
    box-sizing: border-box;
    font-size: var(--htmlFontSize);
  }
  
  body {
    color: var(--bodyColor);
    font-family: var(--bodyFontFamily), var(--bodyFontFamilyFallback);
    font-size: var(--bodyFontSize);
    font-weight: var(--bodyFontWeight);
    line-height: var(--bodyLineHeight);
    margin: 0;
    min-block-size: 100vh;
  }
  
  /* modules/anchor.css */
  
  :root {
    --anchorColor: #eee;
  }
  
  a {
    color: var(--anchorColor);
    outline: 0;
    text-decoration: none;
  }
  
  a:focus,
  a:hover {
    text-decoration: underline;
  }
  
  /* modules/form.css */
  
  :root {
    --formGap: 0.875rem;
  }
  
  input {
    background-image: none;
    border: 0;
    color: white;
    font: inherit;
    margin: 0;
    outline: 0;
    padding: 0;
    transition: background-color 0.3s;
  }
  
  button[type="button"] {
    cursor: pointer;
  }
  
  .form {
    display: grid;
    gap: var(--formGap);
    
  }

    .form input[type="password"],
    .form input[type="text"],
    .form input[type="number"],
    .form select,
    .form input[type="email"],
    .form button[type="button"] {
        inline-size: 100%;
    }
  
  .form__field {
    display: flex;
  }
  
  .form__input {
    flex: 1;
  }
  
  /* modules/login.css */

:root {
    --loginBorderRadus: 0.25rem;
    --loginColor: #eee;
    --loginInputBackgroundColor: #3b4148;
    --loginInputHoverBackgroundColor: #434a52;
    --loginLabelBackgroundColor: #363b41;
    --loginSubmitBackgroundColor: #80089c;
    --loginSubmitColor: #eee;
    --loginSubmitHoverBackgroundColor: #d44179;
}
  
  .login {
    color: var(--loginColor);
  }

    .login label,
    .login input[type="email"],
    .login input[type="text"],
    .login select,
    .login input[type="number"],
    .login input[type="password"],
    .login button[type="button"] {
        border-radius: var(--loginBorderRadus);
        padding: 1rem;
    }
  
  .login label {
    background-color: var(--loginLabelBackgroundColor);
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    padding-inline: 1.25rem;
  }

    .login input[type="password"],
    .login input[type="text"],
    .login select,
    .login input[type="number"],
    .login input[type="email"] {
        background-color: var(--loginInputBackgroundColor);
        border-bottom-left-radius: 0;
        border-top-left-radius: 0;
    }

        .login input[type="password"]:focus,
        .login input[type="password"]:hover,
        .login select:focus,
        .login select:hover,
        .login input[type="text"]:focus,
        .login input[type="text"]:hover,
        .login input[type="number"]:focus,
        .login input[type="number"]:hover,
        .login input[type="email"]:focus,
        .login input[type="email"]:hover {
         
        }
  
  .login button[type="button"] {
    background-color: var(--loginSubmitBackgroundColor);
    color: var(--loginSubmitColor);
    font-weight: 700;
    text-transform: uppercase;
  }

    .login button[type="button"]:focus,
    .login button[type="button"]:hover {
        background-color: var(--loginSubmitHoverBackgroundColor);
    }
  
  /* modules/text.css */
  
  p {
    margin-block: 1.5rem;
  }
  
  .text--center {
    text-align: center;
  }
  