   * {
            box-sizing: border-box;
              font-family: "Estedad";
        }
@font-face {
  font-family: "Trickster";
  src:
    local("Estedad"),
    url("../Estedad-v5.0-Fontjo.com/Estedad-v5.0-Fontjo.com/woff2/Estedad-Regular.woff2") format("woff2") ;
    }   
    body {
            margin: 0;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            font-family: "Estedad";

            background:
                linear-gradient(135deg, #141e30, #243b55);
        }

        .glass-box {
            width: 100%;
            max-width: 430px;
            padding: 30px;

            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 24px;

            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);

            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);

            color: #fff;
        }

        .glass-box h2 {
            margin: 0 0 25px;
            text-align: center;
            font-size: 22px;
        }

        .form-group {
            margin-bottom: 18px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-size: 14px;
        }

        .form-control {
            width: 100%;
            height: 50px;
            padding: 0 15px;

            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 12px;

            background: rgba(255, 255, 255, 0.12);
            color: #fff;

            outline: none;
            font-size: 16px;
            transition: 0.3s;
        }

        .form-control::placeholder {
            color: rgba(255, 255, 255, 0.55);
        }

        .form-control:focus {
            border-color: rgba(255, 255, 255, 0.8);
            background: rgba(255, 255, 255, 0.18);
        }

        .form-control:disabled {
            opacity: 0.6;
        }

        .status {
            display: block;
            margin-top: 7px;
            min-height: 20px;
            font-size: 13px;
        }

        .status.success {
            color: #7CFFB2;
        }

        .status.error {
            color: #ff8585;
        }

        .status.loading {
            color: #ffe08a;
        }

        .submit-btn {
            width: 100%;
            height: 50px;
            margin-top: 10px;

            border: 0;
            border-radius: 12px;

            background: #fff;
            color: #172235;

            font-size: 16px;
            font-weight: bold;

            cursor: pointer;
            transition: 0.3s;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .submit-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }

        .result-name {
            margin-top: 15px;
            padding: 12px;

            display: none;

            border-radius: 10px;
            background: rgba(124, 255, 178, 0.12);
            border: 1px solid rgba(124, 255, 178, 0.3);

            color: #7CFFB2;
            text-align: center;
        }