
body{
    background-color: rgb(45, 45, 45);
    font-size: 17px;
    color: white;
}

.loginForm{
border-style: solid;
border-color: rgb(68, 68, 68);
border-radius: 10px;
background-color: rgb(68, 68, 68);
  margin: auto;
  margin-top: 20px;
  width: 50%;
  padding: 10px;
  text-align: center;
}

.ipTxt{
    margin-top: 5px;
    margin-bottom: 10px;
    width: 300px;
    height: 35px;
    border-style: solid;
    border-color: rgb(59, 59, 59);
    border-radius: 25px;
    border-width: 1px;
    padding-left: 15px;
    font-size: 15px;
}

.ipTxt:focus {
    outline: none !important;
}

.ipBtn{
    background-color: white;
    width: 100px;
    height: 35px;
    border-style: solid;
    border-color: rgb(59, 59, 59);
    border-radius: 25px;
    border-width: 1px;
    font-size: 15px;
}

.ipBtn:hover{
    transition: .2s;
    cursor: pointer;
    background-color: rgb(230, 230, 230);
}

.ipBtn:active{
    transition: .2s;
    background-color: rgb(192, 192, 192);
}

.hTitle{
    font-size: 25px;
    margin-bottom: 15px;
}