body {
    font-family: 'Inconsolata', monospace;
    text-align: center;
    color: hsl(252, 6%, 83%);
    padding: 20px;
    position: relative;
    min-height: 100vh;
    background: url('asests/images/background-desktop.png') no-repeat center center fixed;
    background-size: cover;
}


.background-svg {
    position: absolute;
    z-index: -1; 

}

#secure-content{
    font-size: 15px;
    margin-bottom: 30px;
}

.logo-full{
    margin-bottom: 10px;
}
.circle {
    top: 10px;
    left: 10px;
    width: 100px;
}

.lines {
    bottom: 0px;
    right: 0px;
    margin: 0px;
    width: 150px;
    display: flex;
    
}

.squiggly-top {
    right: 0;
    width: 25%;
}

.squiggly-bottom-desktop {
    bottom: 0;
    width: 50%;
    left: 0;
}

/* Main Content Container */
.container {
    max-width: 450px;
    background: transparent;
    padding: 30px;
    border-radius: 8px;
    margin: auto;
    text-align: center;
    overflow: hidden;
    position: relative;
}

/* Fading Effect on Left & Right */
.container::before,
.container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 20%; /* Controls the fade width */
    height: 100%;
    background: linear-gradient(to right, black, transparent);
    z-index: 2;
    border-radius: 20px;
}

.container::before {
    left: 0;
}

.container::after {
    right: 0;
    transform: scaleX(-1);
}

h1 {
    font-size: 24px;
    font-weight: bold;
    color: white;
    position: relative;
    display: inline-block;
    opacity: 0;
    transform: scaleX(0);
    animation: revealText 2s ease-in-out infinite;
}

/* Continuous Reveal Animation */
@keyframes revealText {
    0% {
        opacity: 0;
        transform: scaleX(0);
    }
    50% {
        opacity: 1;
        transform: scaleX(1.1);
    }
    100% {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* Fading Shine Effect */
h1::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shineEffect 2s ease-in-out infinite;
    filter: blur(10px); /* Fading border effect */
}

/* Smooth Infinite Light Sweep */
@keyframes shineEffect {
    0% {
        left: -150%;
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
    100% {
        left: 150%;
        opacity: 0;
    }
}


#conf{
    font-size: 15px;
    margin-bottom: 30px;
}

/* Form Styling */
form {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Space between elements */
}

label {
    font-weight: bold;
    display: block;
    text-align: left; /* Align text to the left */
}

.info-icon{
    display: flex;
    align-items: center;

}

.info-icon h3{
    font-size: 15px;
    padding-left: 10px;
    padding-bottom: 0px;

}
/* Input & Button Styles */
button {
    padding: 20px 40px;
    background: linear-gradient(180deg, hsl(7, 71%, 60%) 0%, hsl(7, 71%, 50%) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    transition: background 0.5s ease-in-out, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0px 4px 15px rgba(255, 69, 58, 0.5);
}

/* Glossy Reflection Effect */
button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.3) 10%, transparent 70%);
    opacity: 0.5;
    pointer-events: none;
}

/* Hover Effect: Smooth Color Shift & Shadow Glow */
button:hover {
    background: linear-gradient(45deg, hsl(7, 71%, 60%), hsl(44, 100%, 50%), hsl(160, 100%, 50%));
    background-size: 300%;
    animation: colorShift 1.5s ease-in-out infinite;
    transform: scale(1.05);
    box-shadow: 0px 6px 20px rgba(255, 200, 0, 0.6);
}

/* Continuous Gradient Animation */
@keyframes colorShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Fog Effect */
button::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 80%);
    animation: fogMove 4s linear infinite;
    opacity: 0.3;
}

@keyframes fogMove {
    0% { transform: translateX(-10%) translateY(-10%) scale(1); }
    50% { transform: translateX(10%) translateY(10%) scale(1.1); }
    100% { transform: translateX(-10%) translateY(-10%) scale(1); }
}

/* Blinking Effect on Click */
button:active {
    animation: blinkEffect 0.3s ease-in-out 3;
}

@keyframes blinkEffect {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Error Message */
.error-message {
    color: red;
    font-size: 12px;
    margin-top: -10px; /* Move closer to input */
}

/* Hide Elements */
.hidden {
    display: none;
}

/* File Upload Styles */
.file-upload {
    position: relative;
    border: 2px dashed #ccc;
    background: rgba(255, 255, 255, 0.1); /* Slight transparency */
    border-radius: 10px;
    width: 100%;
    height: 120px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s, border-width 0.3s, transform 0.3s;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;  
}

.file-upload:hover {
    transform: scale(1.05);
    border-color: #e94f4f;
    border-width: 3px;
}
#file{
    font-size: 14px;
    height: 100%;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    height: 100%;
}

.upload-icon {
    width: 50px;
    height: 100%;
    margin-bottom: 10px;
    padding-top: 20px;
}

.file-upload-input {

    top: 0;
    left: 0;
    bottom: 100px;
    opacity: 0;
}

input {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1); /* Slight transparency */
    font-size: 16px;
    color: hsl(252, 6%, 83%);
}

::placeholder{
    font-family: 'Inconsolata', monospace;


}
.github-info{
    display: flex;
    flex-direction: column;
}

@font-face {
    font-family: 'Inconsolata';
    src: url('asests/fonts/Inconsolata-ExtraBold.ttf') format('truetype');
    font-weight: 800; /* ExtraBold */
    font-style: normal;
}
/* Ticket Container */
.ticket-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.heading{
    width: 2000px;
}

.heading h1{
    font-size: 60px;
    color: white;
    margin-top: 20px;
}

.heading h2{
    font-size: 40px;
    color: white;
}

#email-name{
    font-size: 20px;
    color: rgb(231, 128, 128);
    margin-top: 20px;
}

#email-content{
    font-size: 15px;
    color: white;
    margin-top: 20px;
}

/* Ticket Wrapper */
.ticket {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items:left;
    justify-content: center;
    width: 600px; /* Fixed size for consistency */
    height: 280px;
    background: url('asests/images/pattern-ticket.svg') no-repeat center center;
    background-size: 100% 100%;
    margin-top: 30px;
    /*background-size: cover;
    padding: 20px;*/
}

.ticket-logo{
    width: 300px;
    margin-top: 10px;
    margin-left: 20px;
}

.ticket-content {
    display: flex;
    flex-direction: row;
    margin-left: 6em; 
    margin-top: 4em;/* Align elements in a row */
}

/* Ticket Header (Logo) */
.ticket-header {
    display: flex;
    justify-content: left;
    width: 100%;
    margin-bottom: 10px;
}

/* Event Date */
.Date {
    font-size: 14px;
    font-weight: bold;
    color: white;
    text-align: left;
    margin-left: 20px;
}

/* Avatar Image */


.avatar {
    width: 80px; /* Adjust avatar size */
    height: 80px;
    border-radius: 25px; /* Rounded corners */
    position: absolute;
    bottom: 20px; /* Position from the bottom */
    left: 20px; /* Position from the left */
}

.github-info{
    margin-left: 20px;
    
}

/* Name Styling */
.name-ticket {
    font-size: 20px;
    font-weight: bold;
    color: white;
    margin: 0;
}

#ticket-nameing{
    background: linear-gradient(90deg, #FF6A3D, #fffefd);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* GitHub Info */
.info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
}
.info p{
    margin: 0;
}
.git-img {
    width: 20px;
    height: 20px;
}

.github-username {
    font-size: 16px;
    background: linear-gradient(90deg, #FF6A3D, #FF9A8B);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    
}
.ticket-number {
    height: 200px;   
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 20px;
}

#ticketnumber {
    font-size: 14px;
    font-size: larger;
    color: rgb(136, 132, 132);
    transform: rotate(90deg);
}


.bottom {
    display:flex;
    position: absolute;
    bottom: 20px; /* Align with avatar's bott;om */
    left: 120px; /* Position to the right of the avatar */
    color: white;
}

 .bottom-print{
   margin-top: 10px;   
}

.bottom-print button{
    padding: 10px;
    background: hsl(7, 71%, 60%);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 15px;
}



