::placeholder{
    color:#f0eeeaa3;
    font-size:1.1rem;
}

input:focus::placeholder {
    color: transparent;
    transition: all 0.5s ease;
}

.App{
    overflow: hidden !important;
}

.form-layout{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    /*background: image(http://194.35.120.185:3000/bg1.png); /*linear-gradient(360deg, #ED4E45, #f3df33);*/
    background-image: url("http://194.35.120.185:3000/bg1.png");
    height: 1500px;
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
}

.client-form-container{
    display: flex;
    justify-content: center;
    width: 1000px;
    height: 1000px;
    background: black;
    border-radius: 30px;
}

.client-form-image{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    flex:1;
    border-radius: 15px 0px 0px 15px;
}

.client-form-registration{
    flex:1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.client-form-registration h2{
    color:#FFFDFA;
}

.client-form-registration h5{
    color:#FFFDFA;
}

.client-form-registration form{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.client-form-input{
    height: 30px;
    outline: none;
    border: 0px;
    padding-left: 15px;
    font-size: 16px;
    border-bottom-width: 2px;
    transition: all 0.3s ease;
    background-color: black;
    border-bottom: 1px solid lightgray;
    color:white;
    font-size:1.2rem;
}

.client-form-input:focus{
    border-bottom: 1px solid lightgray;
}

.form-last-line{
    padding-left: 80px;
    padding-right: 80px;
    display: flex;
    gap: 40px;
}

.payment-container{
    width: 125px;
    margin-bottom: 0px;
}

.form-button{
    background-color: #BE0D19;
    border-radius: 25px;
    border: none;
    color: #FFFDFA;
    width: 120px;
    height: 50px;
    font-size: 1.4rem;
    margin-top: 25px;
}

label.myLabel input[type="file"] {
    position:absolute;
    top: -1000px;
}
    
.myLabel {
    background-color: black;
    border: 1px solid rgb(180, 179, 179);
    text-align: center;
    border-radius: 4px;
    padding: 5px;

}
.myLabel:hover {
    background: rgba(72, 72, 72, 0.748);
    cursor: pointer;
}
.myLabel:active {
    background: #0f5929;
}
.myLabel :invalid + span {
    color: #fbf04c;
}
.myLabel :valid + span {
    color: #1DB954;
}

.myLabel span{
    margin-left: 0px;
}

.greetings-text{
    padding-left: 50px;
    padding-right: 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

h5.greetings-two,
h5.greetings-three {
    color: white;
}