body{
    background-image: url(image/pic1.jpg);
    background-repeat: no-repeat;
    background-size:1550px 730px;
}
header{
    width:100% ;
    height:75px ;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px,10px;
    opacity: 86%;
    background-image: url(image/pic3.png);
    background-repeat: no-repeat;
    background-size: 50px 50px;
    background-position: 0%;
}
.logo{
   font-size: 30px;
   font-weight: bold;
   color: white;
   letter-spacing: 1.5px;
   cursor: pointer;
   text-transform: uppercase;
   margin: 45px;
}
nav li{
    display: inline-block;
    list-style: none;
    padding: 0px 20px;
}
a,button{
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    text-transform: uppercase;
}
button{
    background-color: rgb(247, 144, 0);
    padding: 9px 25px;
    border: none;
    border-radius: 8px;
    transition: all 0.4s ease 0s;
    margin-right: 40px;
    animation: colors 2s infinite;
}
@keyframes colors{
    0%{
        background-color: orange;
    }
    25%{
        background-color: red;
    }
    50%{
        background-color: blueviolet;
    }
    75%{
        background-color: yellow;
    }
    100%{
        background-color: blue;
    }
}
nav li a:hover{
    color: rgb(0, 8, 255);
    }
    button:hover{
        background-color: blue;
    }
    
.form-group{
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: stretch;
    color: white;
   
}
.form{
    padding: 0%;
    margin: 0%;
    justify-items: left;
}
.anik{
    color: red;
    animation:font-color 4s infinite ;
    
}
@keyframes font-color{
    0%{
        color: red;
    }
    25%{
        color: yellow;
    }
    50%{
        color: green;
    }
    75%{
        color: orange;
    }
    100%{
        color: blue;
    }
}



/* form-----style.css */


*{
    margin: 0;
    padding: 0;

}
.register{
    padding-bottom: 5%;
    padding-left: 15%;
    margin-top: -15%;

}
div.main{
    width: 400px;
    margin: 100px auto 0px auto ;
}
h2{
    text-align: center;
    padding-right: 15%;
    padding-top: 5%;
    padding-bottom: 4%;
   
    font-family: sans-serif;
}
div.register{
    background-color: rgba(0,0,0,0.5);
    width: 100%;
    font-size: 18px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 2px 2px 15px rgba(0,0,0,0.3);
    color: #fff;
}

label{
    font-family: sans-serif;
    font-size: 18px;
    font-style: italic;
}
input#name{
    width: 300px;
    border: 1px solid #ddd;
    border-radius: 3px;
    outline: 0;
    padding: 7px;
    background-color: #fff;
    box-shadow: inset 1px 1px 5px rgba(0,0,0,0.3);
}
input#submit{
    width: 200px;
    padding: 7px;
    font-size: 16px ; font-family: sans-serif;
    font-weight: 600;
    border: none;
    border-radius: 3px;
    background-color: rgba(250,100,0,0.8);
    color: #fff;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 1px 1px 5px rgba(0,0,0,0.3);
    margin-bottom: 20px;
}
label,span,h2{
    text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}