* { box-sizing: border-box; }
  body {
    margin: 0;
    font-family: 'Comfortaa', sans-serif;
    background: linear-gradient(213.96deg, #8DD0D7 8.36%, #8DD7FF 90.37%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .top-bar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: #1a1a1a;
  }
  .container {
    display: flex;
    width: 1000px;
    max-width: 95%;
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 3px;
    height: 623px;
    margin-right: 22px;
  }
  /* LEFT PANEL */
  .login-panel {
    flex: 1.1;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 56px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    width: 572px;
  }
  .login-panel h1 {
    text-align: center;
    font-size: 36px;
    font-weight: 500;
    color: #1f2d3d;
    margin: 0 0 6px;
  }
  .subtitle {
    text-align: center;
    color: #8a94a3;
    font-size: 14px;
    margin-bottom: 28px;
  }
  .input-group {
    position: relative;
    margin-bottom: 18px;
  }
  .input-group input {
    width: 100%;
    padding: 16px 44px 16px 18px;
    font-size: 15px;
    color: #2c3645;
    outline: none;
    border: 1px solid #0A254099;
    font-family: 'Comfortaa', sans-serif;
    background: rgba(255, 255, 255, 0.08); /* Required for backdrop blur */

    box-shadow:
        inset -27.67px 27.67px 27.67px #FFFFFF12,
        inset 27.67px -27.67px 27.67px #A5A5A512;

    backdrop-filter: blur(111.22px);
    -webkit-backdrop-filter: blur(111.22px);

    border: 1px solid #0A254099;
    border-radius: 8px;
  }
  .input-group input::placeholder { color: #8a94a3; }
  .input-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #5a6a85;
    font-size: 16px;
  }
  .forgot {
    text-align: right;
    margin: -6px 0 22px;
  }
  .forgot a {
    color: #2F80ED;
    font-size: 13px;
    text-decoration: none;
  }
  .captcha-label {
    font-size: 14px;
    color: #2c3645;
    margin-bottom: 8px;
  }
  .captcha-box {
    border: 1.5px dashed #9aa5b3;
    border-radius: 8px;
    padding: 14px;
    text-align: center;
    font-size: 15px;
    color: #2c3645;
    margin-bottom: 12px;
    background: #ffff;
    border-bottom: none;
  }
  .captcha-input {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid #0A254099;
    border-radius: 10px;
    font-size: 15px;
    color: #8a94a3;
    margin-bottom: 18px;
    outline: none;
    margin-top: -25px;
    background: rgba(255, 255, 255, 0.08); /* Required for backdrop blur */

    box-shadow:
        inset -27.67px 27.67px 27.67px #FFFFFF12,
        inset 27.67px -27.67px 27.67px #A5A5A512;

    backdrop-filter: blur(111.22px);
    -webkit-backdrop-filter: blur(111.22px);
    
  }
  .terms {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: #2c3645;
    margin-bottom: 24px;
  }
  .terms input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #2F80ED;
  }
  .terms a {
    color: #2F80ED;
    text-decoration: none;
  }
  .login-btn {
    display: block;
    width: 25%;
    max-width: 220px;
    margin: 0 auto 18px;
    padding: 14px 0;
    box-shadow:
      inset 1px 1px 2px 0 #FFFFFF4D,
      inset -1px -2px 2px 0 #FFFFFF1A,
      inset 0 0 10px 0 #FFFFFF4D;
    background: #2F80ED;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 50px 50px;
    cursor: pointer;
  }
  .signup {
    text-align: center;
    font-size: 13px;
    color: #2c3645;
  }
  .signup a {
    color: #2F80ED;
    text-decoration: underline;
  }
 
  /* RIGHT PANEL */
  .brand-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
  }
  .arch {
    width: 375px;
    height: 200px;
    background: #d9a878;
    border-radius: 170px 170px 0 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    position: relative;
    margin-bottom: 18px;
  }
  .arch-inner {
    width: 275px;
    height: 181px;
    background: #f3f1ee;
    border-radius: 90px 90px 0 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-size: 60px;
    overflow: hidden;
  }
  .brand-name {
    font-family: 'Quicksand', sans-serif;
    /* font-style: italic; */
    font-weight: bold;
    font-size: 61px;
    color: #f5ec1f;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.05);
    margin: 0;
  }
.tagline {
  color: #2c3645;
  font-size: 18px;
  margin-top: 8px;
}
/* Error state for input-group wrapper */
  .input-group.error input,
  .captcha-input.error {
    border-color: #FF4A5E !important;
    color: #FF4A5E;
  }
  .input-group.error input::placeholder,
  .captcha-input.error::placeholder {
    color: #FF4A5E;
    opacity: 1;
  }
  .input-group.error .input-icon {
    color: #FF4A5E;
  }
  .input-group.error .input-icon i,
  .input-group.error .input-icon img {
    filter: invert(56%) sepia(46%) saturate(1672%) hue-rotate(316deg) brightness(99%) contrast(91%);
  }
  /* Captcha label error text shown above the captcha box, like "This field is required*" */
  .captcha-error-label {
    display: none;
    color: #FF4A5E;
    font-size: 14px;
    margin-bottom: 6px;
  }
  .captcha-error-label.show {
    display: block;
  }
  .terms.error span {
    color: #FF4A5E;
  }
  .error{
    color: #FF4A5E;
  }