
            body {
                font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
                background: #474747;
                margin: 0;
                padding: 0;
                display: flex;
                justify-content: center;
                align-items: center;
                min-height: 100vh;
                color: #373737;
            }
            .container {
                background: rgba(47, 47, 47, 0.5);
                border-radius: 15px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
                padding: 30px;
                width: 90%;
                max-width: 500px;
                text-align: center;
            }
            h1 {
                color: #FACA42;
                margin-bottom: 20px;
                font-weight: 600;
            }
            .logo {
                font-size: 3rem;
                color: #FACA42;
                margin-bottom: 20px;
            }
            .form-group {
                margin-bottom: 20px;
                text-align: left;
            }
            label {
                display: block;
                margin-bottom: 8px;
                font-weight: 500;
                color: #555;
            }
            input[type="text"] {
                width: 100%;
                padding: 12px 15px;
                border: 1px solid #ddd;
                border-radius: 8px;
                font-size: 16px;
                box-sizing: border-box;
                transition: border-color 0.3s;
            }
            input[type="text"]:focus {
                border-color: #ffffff;
                outline: none;
                box-shadow: 0 0 0 2px rgba(0,0,200, 0.2);
            }
            button {
                background: linear-gradient(to right, #FACA42, #FACA42);
                color: white;
                border: none;
                border-radius: 8px;
                padding: 12px 25px;
                font-size: 16px;
                cursor: pointer;
                transition: transform 0.3s, box-shadow 0.3s;
                font-weight: 600;
            }
            button:hover {
                transform: translateY(-2px);
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            }
            .info {
                margin-top: 20px;
                font-size: 14px;
                color: #666;
                background: #f8f9fa;
                padding: 15px;
                border-radius: 8px;
                text-align: left;
            }
