@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@100;200;300;400;500;600&display=swap');
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Prompt', sans-serif;
}

:root {
    --primary-color: linear-gradient(180deg, #2f005a 0%, #7d21d2 100%);
	
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: Montserrat, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    
    /*display: grid;
    place-items: center;
    min-height: 100vh;
    background-color: #20252A;
    background: url('../img/bg/bg-1.jpeg') no-repeat center center/cover;*/
    background-image: url('../images/bg-red.jpg')!important;
    background-position: left top!important;
    background-size: cover!important;
    background-repeat: no-repeat!important;
    background-attachment: fixed!important;
}


/* Global Stylings */

label {
    display: block;
    margin-bottom: 0.5rem;
}

input {
    display: block;
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 0.25rem;
}

input {
    outline: none;
    border: none;
    color: #000000;
    border-radius: 5px;
    box-shadow: inset 0px 0px 8px rgba(0, 0, 0, 0.50);
}

.width-50 {
    width: 50%;
}

.ml-auto {
    margin-left: auto;
}

.text-center {
    text-align: center;
}


/* Progressbar */

.container {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0%;
    backdrop-filter: blur(0px);
 	background-image: url('../images/bg-red.jpg')!important;
}

.progressbar {
    position: relative;
    display: flex;
    justify-content: space-between;
    counter-reset: step;
    margin: 2rem 0 4rem;
}

.progressbar::before,
.progress {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    width: 100%;
    background-color: #a5a5a5;
    z-index: 0;
}

.progress {
    background: var(--primary-color);
    width: 0%;
    transition: 0.3s;
}

.progress-step {
    width: 2.1875rem;
    height: 2.1875rem;
 
    border: 1px solid #A5A5A5;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.progress-step svg {
    height: 70%;
    fill: #A5A5A5;
}

.progress-step::after {
    content: attr(data-title);
    position: absolute;
    top: calc(100% + 0.5rem);
    font-size: 0.85rem;
    color: #666;
}

.progress-step-active {
    background: var(--primary-color);
    color: #f3f3f3;
}

.progress-step-active svg {
    fill: #000;
}

.progress-step-active::after {
    color: #fff;
    
}


/* Form */

.form {
    width: 95%;
    max-width: 400px;
    margin: 0 auto;
    /* border: 1px solid #0417fe; */
    border-radius: 0.35rem;
    padding: 1.5rem;
    background: linear-gradient(0deg, #4937ff8f 0%, #2700ff 100%)
    box-shadow: 0 0 20px 0px #00000096;
    background-size: cover;
}

.form-step {
    display: none;
    transform-origin: top;
    animation: animate 0.5s;
}

.form-step-active {
    display: block;
}

.input-group {
    margin: 2rem 0;
    color: #fff;
    position: relative;
}

.input-group input {
    padding-left: 40px;
}

.input-group svg {
    height: 25px;
    z-index: 2;
    transform: translateY(-135%);
    left: 10px;
    object-fit: contain;
    position: absolute;
    fill: #a5a5a5;
}

@keyframes animate {
    from {
        transform: scale(1, 0);
        opacity: 0;
    }
    to {
        transform: scale(1, 1);
        opacity: 1;
    }
}


/* Button */

.btns-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.btn {
  
    display: block;
    text-decoration: none;
    background: linear-gradient(0deg, #83050560 20%, #35005a 80%);
    box-shadow: 0 0 2px #35005a8e, 0 0 10px #35005abe, 0 0 15px #35005a77!important;
    color: #fff;
    border: 1px solid rgb(255, 255, 255);
    text-align: center;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: 0.3s;
   
}

.btn2 {
    padding: 0.50rem;
    display: block;
    text-decoration: none;
    background: linear-gradient(180deg, #12eb24 0%, #03c931 100%) !important;
    box-shadow: 0 4px 6px rgb(0 0 0 / 25%) !important;
    border: 1px solid #00ff40 !important;
    color: #fff;
    text-align: center;
    border-radius: 5px !important;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600 !important;
    letter-spacing: 0.75px !important;
    margin: 0 auto !important;
    text-shadow: 0 0 0px #fff0, 0 0 0px #fff0, 0 0 0px #fff0 !important;
}


    






.btn2:hover {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--primary-color);
}

.btn:hover {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--primary-color);
}

.btn-regis {
    background: #20252A !important;
    border: 1px solid #a5a5a5 !important;
    color: #fff;
}

.btn-regis:hover {
    background: var(--primary-color) !important;
    color: #fff;
}

.btn-regis:a {
    background: var(--primary-color) !important;
    color: #fff;
}


/* Header */

.header {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.header h1 {
    margin-bottom: 20px;
    margin-top: 10px;
}

.header img {
    height: 100px;
    object-fit: contain;
}

@media screen and (max-width:768px) {
    .header img {
        height: 90px;
    }
}


/* Input */

.input-group select {
    width: 100%;
    outline: none;
    border: none;
    color: #fff;
    background-color: #33393E;
    border-radius: 5px;
    box-shadow: inset 0px 0px 8px rgb(0 0 0 / 50%);
    padding: 0.75rem;
   
}

.links{
    display: flex;
    cursor: pointer;
    color: white;
    margin: 0 0 20px 0;
    margin-top: 10px;
    font-size: 17px;
  }
  .facebook,.instagram{
    width: 100%;
    height: 45px;
    line-height: 45px;
    margin-left: 10px;
    
   
  }
  .facebook{
    margin-left: 0;
  }

  .links i{
    font-size: 17px;
  }