*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#030b23;
    min-height:100vh;
    overflow-x:hidden;
}

/* Main Section */

.ticket-section{
    width:100%;
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:30px 15px;
    position:relative;
    z-index:10;
}

/* Glass Card */

.ticket-card{
    width:100%;
    max-width:850px;
    padding:40px;
    border-radius:30px;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(25px);
    -webkit-backdrop-filter:blur(25px);
    border:1px solid rgba(255,255,255,.15);
    box-shadow:
        0 25px 45px rgba(0,0,0,.4),
        inset 0 0 20px rgba(255,255,255,.05);
}

/* Logo */

.logo{
    width:150px;
    margin-bottom:15px;
}

/* Title */

.title{
    text-align:center;
    margin-bottom:30px;
}

.title h1{
    color:#fff;
    font-size:42px;
    margin-bottom:8px;
}

.title p{
    color:#b9d7ff;
}

/* Ticket ID */

.ticket-id-box{
    background:rgba(255,255,255,.08);
    padding:15px;
    border-radius:12px;
    margin-bottom:25px;
    color:white;
    text-align:center;
}

.ticket-id-box strong{
    color:#33d6ff;
}

/* Input Groups */

.input-group{
    position:relative;
    margin-bottom:22px;
}

/* Inputs */

.input-group input,
.input-group textarea,
.input-group select{
    width:100%;
    padding:18px;
    border:none;
    outline:none;
    border-radius:15px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    color:#ffffff;
    font-size:15px;
    transition:.3s;
}

/* Dropdown Fix */

.input-group select{
    cursor:pointer;
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;

    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 20 20'%3E%3Cpath d='M5.5 7.5L10 12l4.5-4.5'/%3E%3C/svg%3E");

    background-repeat:no-repeat;
    background-position:right 15px center;
    background-size:18px;
    padding-right:45px;
}

/* Important Dropdown Option Fix */

.input-group select option{
    background:#091a44 !important;
    color:#ffffff !important;
    padding:10px;
}

select option{
    background:#091a44 !important;
    color:#ffffff !important;
}

/* Textarea */

.input-group textarea{
    resize:none;
}

/* Labels */

.input-group label{
    position:absolute;
    left:18px;
    top:18px;
    color:#b8c6ff;
    pointer-events:none;
    transition:.3s;
}

/* Focus Effects */

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus{
    border-color:#33d6ff;
    box-shadow:0 0 20px rgba(51,214,255,.35);
}

/* Floating Labels */

.input-group input:focus~label,
.input-group input:valid~label,
.input-group textarea:focus~label,
.input-group textarea:valid~label{
    top:-10px;
    left:12px;
    font-size:12px;
    background:#091a44;
    padding:0 8px;
    border-radius:20px;
    color:#33d6ff;
}

/* Upload Section */

.upload-section{
    background:rgba(255,255,255,.05);
    padding:20px;
    border-radius:15px;
    margin-bottom:25px;
}

.upload-label{
    display:block;
    color:white;
    margin-bottom:10px;
    font-weight:500;
}

/* File Input */

#issueImage{
    width:100%;
    padding:10px;
    color:white;
    border-radius:10px;
    background:rgba(255,255,255,.05);
}

#issueImage::file-selector-button{
    border:none;
    padding:10px 18px;
    border-radius:10px;
    cursor:pointer;
    color:white;
    background:#0066ff;
    margin-right:12px;
}

/* Preview */

#previewContainer{
    margin-top:15px;
    text-align:center;
}

#previewImage{
    max-width:100%;
    max-height:300px;
    border-radius:15px;
    display:none;
    border:2px solid rgba(255,255,255,.2);
}

/* Submit Button */

button{
    width:100%;
    padding:18px;
    border:none;
    cursor:pointer;
    border-radius:50px;
    font-size:17px;
    font-weight:600;
    color:white;

    background:linear-gradient(
        135deg,
        #00bfff,
        #0066ff,
        #00d4ff
    );

    background-size:300% 300%;
    animation:gradientMove 6s infinite;
    transition:.3s;
}

button:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 30px rgba(0,191,255,.4);
}

button:disabled{
    opacity:.7;
    cursor:not-allowed;
}

/* Background */

.liquid-bg{
    position:fixed;
    inset:0;
    overflow:hidden;
}

.liquid-bg span{
    position:absolute;
    border-radius:50%;
    filter:blur(50px);
    animation:float 20s linear infinite;
}

.liquid-bg span:nth-child(1){
    width:500px;
    height:500px;
    background:#00d4ff;
    left:-100px;
    top:-100px;
}

.liquid-bg span:nth-child(2){
    width:400px;
    height:400px;
    background:#0066ff;
    right:-100px;
    top:20%;
}

.liquid-bg span:nth-child(3){
    width:450px;
    height:450px;
    background:#00a2ff;
    bottom:-120px;
    left:20%;
}

.liquid-bg span:nth-child(4){
    width:350px;
    height:350px;
    background:#33d6ff;
    right:15%;
    bottom:-80px;
}

/* Animations */

@keyframes float{
    0%{
        transform:translateY(0) rotate(0deg);
    }
    50%{
        transform:translateY(-80px) rotate(180deg);
    }
    100%{
        transform:translateY(0) rotate(360deg);
    }
}

@keyframes gradientMove{
    0%{
        background-position:0% 50%;
    }
    50%{
        background-position:100% 50%;
    }
    100%{
        background-position:0% 50%;
    }
}

/* Mobile */

@media(max-width:768px){

    .ticket-card{
        padding:25px;
    }

    .title h1{
        font-size:30px;
    }

    .logo{
        width:120px;
    }

    .input-group input,
    .input-group textarea,
    .input-group select{
        padding:16px;
        font-size:14px;
    }
}