button,
input,
label,
p {
    display: block;
    margin: 20px;
}

body {
    margin: 0;
    padding: 0;
}
.main{
    
    display: flex;
    justify-content: right;
    align-items: center;
}
.maincontainer {
       display: flex;
    justify-content: center;
    align-items: center;
 
    background-image: url("../img/img1.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100vh;

}


.button-64 {
    align-items: center;
    background-image: linear-gradient(144deg, #AF40FF, #5B42F3 50%, #00DDEB);
    border: 0;
    border-radius: 8px;
    box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
    box-sizing: border-box;
    color: #FFFFFF;
    display: flex;
    font-family: Phantomsans, sans-serif;
    font-size: 10px;
    justify-content: center;
    line-height: 0.5em;
    max-width: 50%;
    min-width: 70px;
    padding: 3px;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    cursor: pointer;
}

.button-64:active,
.button-64:hover {
    outline: 0;
}

.button-64 span {
    background-color: rgb(5, 6, 45);
    padding: 10px 18px;
    border-radius: 6px;
    width: 100%;
    height: 100%;
    transition: 300ms;
}

.button-64:hover span {
    background: none;
}

@media (min-width: 768px) {
    .button-64 {
        font-size: 24px;
        min-width: 196px;
    }
}

.form {
    background-color: rgba(0, 113, 128, 0.6);
    padding: 30px;
    width: 360px;
    height: 270px;
    border-radius: 50px;
    box-shadow: 0 0 10px rgb(147, 41, 247);
    margin: auto;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    backdrop-filter: blur(10px);
    animation: fadeIn 1s ease forwards;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    -webkit-animation: fadeIn 1s ease forwards;
}

.form__group {
    position: relative;
    padding: 20px 0 0;
    width: 100%;
    max-width: 180px;
}

.form__field {
    font-family: inherit;
    width: 100%;
    border: none;
    border-bottom: 2px solid #ffffff;
    outline: 0;
    font-size: 19px;
    color: #fff;
    padding: 7px 0;
    background: transparent;
    transition: border-color 0.2s;
}

.form__field::placeholder {
    color: transparent;
}

.form__field:placeholder-shown~.form__label {
    font-size: 20px;
    cursor: text;
    top: 20px;
}

.form__label {
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    color: white;
    pointer-events: none;
}

.form__field:focus {
    padding-bottom: 6px;
    font-weight: 700;
    border-width: 3px;
    border-image: linear-gradient(to right, #116399, #38caef);
    border-image-slice: 1;
}

.form__field:focus~.form__label {
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    font-size: 19px;
    color: #ffffff;
    
    font-weight: 700;
}

/* reset input */
.form__field:required,
.form__field:invalid {
    box-shadow: none;
}

p {
    font-size: 20px;
    color: white;
}

p span {
 
    font-size: 25px;
    font-weight: bold;
    margin-top: 10px;
    color: #a219fd;
}


@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.screensmall{
    display: none;
}
/*media wuery for small screen*/
@media only screen and (max-width: 400px) {
    .maincontainer{
       background-image: none;
       background-color:#00DDEB;
       position: relative;
       font-size: 10px;

       
    }
    .screensmall{
        display: block;
        position : absolute;
        bottom: 0;
        left: 0;
        background-image: url("../img/تنزيل-removebg-preview.png");
        
    }
    .form{
        width: 200px;
        height: 200px;
    }

}