/* General*/

* {box-sizing: border-box;}

input::placeholder {
    color: var(--Neutral-300);
    font-size: 18px;
    font-family: "Inconsolata";
}

input[type="text"] {
    color: var(--Neutral-0);
    font-family: "Inconsolata";
    font-size: 18px;
    font-weight: normal;
}

html,body {
    margin:0;
    padding:0;
}

body { 
    background: url('assets/images/background-desktop.png');
    font-family:"Inconsolata";
    position: relative;
    overflow-x: hidden;
}

/* Colors */

:root {
    --Neutral-0: hsl(0, 0%, 100%);
    --Neutral-300: hsl(252, 6%, 83%);
    --Neutral-500: hsl(245, 15%, 58%);
    --Neutral-700: hsl(245, 19%, 35%);
    --Neutral-900: hsl(248, 70%, 10%);

    --Orange-500: hsl(7, 88%, 67%);
    --Orange-700: hsl(7, 71%, 60%);

    --Gradient-start: hsl(7, 86%, 67%);
}

/* Background */

.main_bg {
    position:absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg_lines {
    position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  max-height: 100vh;
  object-fit: cover;
  z-index: -1;

}

.logo_full {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translate(-50%,20px);
    z-index: -1;
}

.bg_line_topright {
    position: absolute;
    right: 0;
    top: 3.5rem;
    z-index: -1;
}

.bg_line_bottomleft {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.bg_pattern_circle1 {
    position:absolute;
    top: 534px;
    right: 285px;
}

.bg_pattern_circle2 {
    position:absolute;
    top: -85px;
    left: 44px;
}

/* Inner Section */

/* Header */

.header_alligner {
    margin-top: 50px;
    display:flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-content:center;
}

header {
    text-align: center;
    padding-top: 5.5rem;
}

.header_h1 {
    margin:0;
    font-weight: 800;
    color: var(--Neutral-0);
    font-size: 60px;
    letter-spacing: -1px;
    line-height: 110%;
}

.header_h2 {
    font-size: 24px;
    margin:0;
    margin-top: 20px;
    font-weight: 500;
    color: var(--Neutral-300);
}

/* Form */

.container {
    margin-top: 45px;
    display:flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
}

form {
    width: 460px;
    min-height: 610px;
    height: auto;
}

.none {
    display:none;
}

.file_upload_label {
    color: var(--Neutral-0);
    font-size: 20px;
}

.file_upload_area {
    display: inline-block;
    margin-top: 12px;
    padding: 12px 16px;
    width: 100%;
    height: 126px;
    background-color: rgba(255,255,255,0.08);
    backdrop-filter: blur(5px);
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='12' ry='12' stroke='%238784A5FF' stroke-width='1' stroke-dasharray='6' stroke-dashoffset='0' stroke-linecap='round'/%3e%3c/svg%3e");
    border-radius: 12px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    transition: 0.2s ease-in;
    cursor: pointer;
}

.file_upload_area:hover {
    background-color: rgba(255,255,255,0.2);
}

.file_upload_area:focus {
    outline: 1px solid var(--Neutral-500);
    outline-offset: 2px;
}

.file_upload_img {
    display:block;
    width: 50px;
    height:50px;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid var(--Neutral-700);
    background-color: rgba(255, 255, 255, 0.1);
    filter: drop-shadow(0px 2px 4px  #040128);
}

.file_upload_text {
    color: var(--Neutral-300);
    font-size: 18px;
    font-weight: 400;
}

.file_alligner {
    margin-top: 12px;
    width:100%;
    display:flex;
    flex-flow: row nowrap;
    justify-content:flex-start;
    align-items: center;
    gap: 8px;
}

.file_info_img {
    width: 16px;
    height: 16px;
    margin-bottom: 3px;
}

.file_info_text {
    color: var(--Neutral-300);
    font-size: 12px;
}

.file_info_text_error {
    color: var(--Orange-500);
    font-size: 12px;
}

.alignerDiv {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.rem_chg_buttons1 {
    cursor: pointer;
    padding: 4px 8px;
    background-color: rgba(255,255,255,0.1);
    font-family: "Inconsolata";
    color: var(--Neutral-300);
    border-radius: 4px;
    border: none;
    font-size: 12px;
    font-weight: 400;
    text-decoration: underline;
    z-index: 1;
}

.rem_chg_buttons {
    cursor: pointer;
    padding: 4px 8px;
    background-color: rgba(255,255,255,0.1);
    font-family: "Inconsolata";
    color: var(--Neutral-300);
    border-radius: 4px;
    border: none;
    font-size: 12px;
    font-weight: 400;
    z-index: 1;
}

.inputH_text {
    color: var(--Neutral-0);
    font-size: 20px;

}

.section {
    margin-top: 24px;
    display:flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    gap: 12px;
}

.input_text {
    width: 100%;
    height: 54px;
    padding: 0 16px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--Neutral-500);
    backdrop-filter: blur(5px);
}

.button {
    cursor: pointer;
    margin-top: 24px;
    margin-bottom: 106px;
    padding: 16px 24px;
    border-radius: 12px;
    background-color: var(--Orange-500);
    border: none;
    width: 100%;
}

.button_text {
    color: var(--Neutral-900);
    font-family:"Inconsolata";
    font-weight: 800;
    font-size: 20px;
}

.gradient {
    background: linear-gradient(to right,var(--Orange-500),var(--Neutral-0));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.orange_email {
    color: var(--Orange-500);
}

.error_email {
    display:none;
}

.email_error_icon1 {
    margin-bottom: 4px;
}

/* Ticket */

.ticket_container {
    display:none;
    position: relative;
    width: 600px;
    height: 280px;
    margin: auto;
    margin-top: 100px;
    backdrop-filter: blur(40px);
}

.ticket_container2 {
    position:relative;
}

.ticket_container3 {
    margin-left: 24px;
    margin-top: 74px;
    display:flex;
    flex-flow: row nowrap;
    gap: 16px;

}

.ticket_border {
    position: absolute;
}

.logo-mark {
    position: absolute;
    top: 30px;
    left: 24px;
}

.event_info_container {
    margin-top: 12px;
    display:inline-block;
    width: 330px;
    height: 78px;
    margin-left: 84px;
}

.info_cont_heading {
    margin: 0;
    color: var(--Neutral-0);
    font-size: 40px;
}

.info_cont_text {
    color: var(--Neutral-300);
    font-size: 18px;
}

.ticket_avatar {
    border-radius: 12px;
    width: 80px;
    height: 80px;
}

.ticket_name {
    margin: 0;
    font-size: 30px;
    font-weight: 400;
    color: var(--Neutral-0);
}

.email_ticket {
    font-size: 20px;
    color: var(--Neutral-300);
}

.alligner_div {
    display:flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 10px;
}

.ticket_number {
    color: var(--Neutral-500);
    font-size: 30px;
    display:inline-block;
    position: absolute;
    right: 36px;
    bottom: 97px;
    writing-mode: vertical-rl;
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
}


/* Responsive */


@media screen and (max-width:1100px) {
    #desktop_bg {
        display: none;
    }

    body {
        background-image: url(assets/images/background-desktop.png);
        background-position: center center;
        background-size:cover;
        background-repeat: no-repeat;
    }

    .bg_line_topright {
        margin-top: 0;
    }

    .bg_lines {
        max-height: 800px;
    }

    .header_h1 {
        margin-top: 60px;
    }

    .bg_line_bottomleft {
        display: none;
    }

    #mobile_bottom_line {
        display: block;
        position:absolute;
        bottom:0;
        left:0;
        z-index: -1;
    }

    .bg_pattern_circle1 {
        right:-100px;
    }

    .bg_pattern_circle2 {
        left: -50px;
    }

    .header_alligner {
    margin-top: 30px;
}

}

@media screen and (max-width: 500px) {

    #desktop_bg {
        display: none;
    }

     .header_alligner {
    margin-top: 10px;
    }

    body {
        overflow: hidden;
        background-image: url(assets/images/background-desktop.png);
        background-position: center center;
        background-size:cover;
        background-repeat: no-repeat;
    }

    form {
        width: 340px;
    }

    .header_h1 {
        font-size: 30px;
    }

    .header_h2 {
        font-size: 20px;
    }

    .bg_line_topright {
        margin-top: 0;
    }


    .header_h1 {
        margin-top: 40px;
    }

    .bg_line_bottomleft {
        display: none;
    }

    #mobile_bottom_line {
        display: block;
        position:absolute;
        bottom:0;
        left:0;
        width: 300px;
        height: 210px;
        z-index: -1;
    }

    .bg_pattern_circle1 {
        position: absolute;
        top: 548px;
        right: -50px;
        width: 107px;
        height: 107px;
    }

    .bg_pattern_circle2 {
        position: absolute;
        top: -20px;
        left: -40px;
        width: 107px;
        height: 107px;
    }

    .ticket_container {
        width: 340px;
        height: 160px;
    }

    .ticket_border {
        width: 340px;
        height: 160px;
    }

    .logo-mark {
        left: 16px;
        top: 20px;
        width:29px;
        height: 29px;
    }

    .event_info_container {
        margin-top: 10px;
        display:inline-block;
        width: 177px;
        height: 51px;
        margin-left: 57px;
    }

    .info_cont_heading {
        font-size: 24px;
    }

    .info_cont_text {
        font-size: 14px;
    }

    .ticket_container3 {
    margin-left: 16px;
    margin-top: 27px;
    display:flex;
    flex-flow: row nowrap;
    gap: 12px;
    }

    .ticket_avatar {
        width: 45px;
        height: 45px;
    }

    .ticket_name {
        font-size: 20px;
    }

    .email_ticket {
        font-size: 14px;
    }

    .alligner_div {
        gap:4px;
    }

    .github_icon {
        width: 16px;
        height: 16px;
    }

     .ticket_number {
        font-size: 22px;
        right: 16px;
        top: 50px;
        
    }
}












