/* button { all: unset;

}
input {all:unset}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
} */

* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    
    /*display: flex;
    flex-direction: column;
    justify-content: center;
    
    position: relative; */
    /*overflow:hidden;*/
}

.container {
    max-width: 600px;

}

.container {

    z-index: 1;
    background-color: rgba(255, 255, 255, 0.75);
    padding: 21px;
    border-radius: 10px;
    box-shadow: 0px 0px 3px 0px #fff;
    -webkit-backdrop-filter: blur(11px);
    /* Safari support */
    backdrop-filter: blur(11px);

}

input[type="file"],
input[type="text"] {
    display: block;
    margin: 0px auto 10px auto;
    padding-top:10px;
    padding-bottom: 10px;
    /* padding-left: 4px;
    padding-right: 4px; */
}

button {
    padding: 10px 20px;
    font-size: 16px;

    width: 100%;
}

.cover-image {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    overflow: hidden;

}

:root {
    --vh: 1vh;
}

body {
    height: calc(var(--vh, 1vh) * 100);

}

@media screen and (max-width:992px) {

    .container {
        margin-bottom: 24px;
    }
}

.upload__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    width: 100%;
    position: absolute;
    justify-content: flex-end;
}

@media screen and (min-width:992px) {
    .upload__wrapper {
        justify-content: center;
    }
}
#message{
    margin-top: 10px;
    margin-bottom:4px
}
.message {
    margin-left: 10px;
    margin-right: 10px;
}

/* Firefox (uncomment to work in Firefox, although other properties will not work!)  */
/** {
  scrollbar-width: thin;
  scrollbar-color: #C2C2C2 #575757;
}*/

/* Chrome, Edge and Safari */
#message::-webkit-scrollbar {
    height: 5px;
    width: 5px;
}

#message::-webkit-scrollbar-track {
    border-radius: 5px;
    background-color: #575757;
}

#message::-webkit-scrollbar-track:hover {
    background-color: #A3A3A3;
}

#message::-webkit-scrollbar-track:active {
    background-color: #D7D7D7;
}

#message::-webkit-scrollbar-thumb {
    border-radius: 1px;
    background-color: #C2C2C2;
}

#message::-webkit-scrollbar-thumb:hover {
    background-color: #E3E3E3;
}

#message::-webkit-scrollbar-thumb:active {
    background-color: #F5F5F5;
}


.custom_input {
	display: flex;
	align-items: center;
	position: relative;
	max-width: 100%;
}

.input {
   
	font-size: 18px;
	padding: 5px 10px;
	width: 100%;
	outline: none;
	background: #FFFFFF;
	color: #000000;
	border: 1px solid #C4D1EB;
	border-radius: 5px;
	/* box-shadow: 3px 3px 2px 0px #E2E2E2; */
	transition: .3s ease;
}

.input:focus {
	background: #F2F2F2;
	border: 1px solid #5A7EC7;
	border-radius: 5px;
}

.input::placeholder {
	color: #DDDDDD;
}
.testbutton {

    color: #575757;
    font-size: 18px;

    padding: 10px 25px;
    border-radius: 5px;
    border: 1px solid #C4D1EB;
    
    background: #EEEEEE;
  }
  .testbutton:hover {
    color: #323232 !important;
    background: #ffffff;
  }



    .title__text {
        font-size: 32px;
    }
    @media screen and (min-width:992px){
        .title__text {
        font-size: 64px;
        }
        
    }
    .title__ampersand{
        padding: 0 4px;
    }
    
    
    .title__text {
 
    
    -webkit-text-fill-color: transparent;
    text-fill-color: white;
    background-image: linear-gradient(90deg, #FF000000 0, #ffffff00 calc(25% - 0px), var(--starter-gold) calc(25% + var(--spacing)), var(--center-gold) calc(25% + 1.5* var(--spacing)), var(--starter-gold) calc(25% + 2* var(--spacing)), #ffffff00 calc(25% + 3* var(--spacing)), #FF000000 100%), linear-gradient(90deg, #FF000000 0, #ffffff00 calc(90% - 0px), var(--starter-gold) calc(90% + var(--spacing)), var(--center-gold) calc(90% + 1.5* var(--spacing)), var(--starter-gold) calc(90% + 2* var(--spacing)), #ffffff00 calc(90% + 3* var(--spacing)), #FF000000 100%), linear-gradient(180deg, var(--passive-gold-start) 0, var(--passive-gold-center) 50%, var(--passive-gold-start) 100%) !important;
    background-clip: text;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    -moz-background-clip: text !important;
    -moz-text-fill-color: transparent !important;
}
    

.title__text{
    filter: brightness(0.82);
    --spacing: 32px;
    --starter-gold: #bcbbbb;
    --center-gold: #aeadad;
    --passive-gold-start: #e8e8e8;
    --passive-gold-center: #d3d1d1;
    --passive-gold-start: #d4d4d4;
    --passive-gold-center: #bababa;
}
.fade-out {
    transition: opacity 0.3s ease-out;
    opacity: 0;
  }