@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Outfit:wght@400;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #050505;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Background Atmosphere */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(255, 204, 51, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 480px;
    margin: 0 auto;
    padding: 20px 15px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header with Glassmorphism */
.header {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    position: sticky;
    top: 10px;
    z-index: 100;
}

.back-btn {
    text-decoration: none;
    color: #ffcc33;
    font-size: 18px;
    margin-right: 12px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 204, 51, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: #ffcc33;
    color: #000;
}

.header-title {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Form Container */
.form-content {
    animation: fadeInUp 0.8s ease forwards;
    padding: 10px 0;
}

.page-intro {
    text-align: center;
    margin-bottom: 30px;
}

.page-intro h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.page-intro p {
    color: #888;
    font-size: 12px;
    line-height: 1.5;
    padding: 0 10px;
}

/* Glass Form Card */
form {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 25px 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: #ffcc33;
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-input,
.form-select {
    width: 100%;
    padding: 14px 15px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 13px;
    transition: all 0.3s;
    outline: none;
}

.form-input::placeholder {
    color: #444;
}

.form-input:focus,
.form-select:focus {
    border-color: #ffcc33;
    background-color: rgba(255, 204, 51, 0.05);
    box-shadow: 0 0 15px rgba(255, 204, 51, 0.1);
}

/* Custom Select Styling */
.form-select option {
    background-color: #111;
    color: #fff;
}

/* Custom Checkbox */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
    background: rgba(255, 255, 255, 0.02);
    padding: 12px;
    border-radius: 12px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s;
}

.checkbox-group:hover {
    border-color: rgba(255, 204, 51, 0.3);
}

.checkbox-input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #ffcc33;
}

.checkbox-label {
    font-size: 12px;
    color: #aaa;
    cursor: pointer;
    font-weight: 500;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 16px;
    background: #ffcc33;
    border: none;
    border-radius: 12px;
    color: #000;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    box-shadow: 0 10px 20px rgba(255, 204, 51, 0.2);
}

.submit-btn:hover {
    transform: translateY(-3px);
    background: #fff;
    box-shadow: 0 15px 30px rgba(255, 204, 51, 0.3);
}

.submit-btn i {
    font-size: 18px;
}

/* Hidden Field Animation */
.hidden-field {
    display: none;
    opacity: 0;
    transform: translateY(10px);
}

.visible-field {
    display: block !important;
    animation: fadeInUp 0.4s ease forwards;
}

/* Credits */
.developer-credits {
    text-align: center;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.2);
    padding-bottom: 20px;
    margin-top: auto;
    letter-spacing: 1.5px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}