* {
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}
body {
    font-family: Arial, Helvetica, sans-serif;
}
.container {
    background-color:black;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
   
    
}
.login-container {
    background-color: white;
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
     flex-wrap: wrap;

}
.content h1 {
    color: #1877F2;
    font-size: 40px;

}
.content p {
    font-size: 18px;
}
.content {
    width: 280px;
}
.form {
    
     width: 350px;
     height: 380px;
     /* background-color: aqua; */
     box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
form {
    display: block;
}
 input {
    width: 90%;
    height: 50px;
    margin-left: 15px;
    margin-bottom: 10px;
    font-size: 18px;
    margin-top: 15px;
    border: none;
 }
 .input2 {
    width: 90%;
    height: 50px;
    margin-left: 15px;
    margin-bottom: 10px;
    font-size: 18px;
    margin-top: 10px;
 }
  button {
    background-color: #1877F2;
    color: white;
    font-weight: 800px;
    width: 90%;
    height: 40px;
    margin-left: 15px;
    margin-bottom: 10px;
    font-size: 25px;
    border: none;
    border-radius: 5px;
    margin: 5px 15px;

 }
 .button2 {
    background-color: white;
    color: black;
    font-size: 15px;
 }
 .button3 {
    background-color: green;
    font-size: 20px;
    height: 55px;
    width: 60%;
    margin-left: 80px;
    margin-top:30px;
    
 }
 button:hover {
    cursor: pointer;

 }
