/**  search box style **/
.search-wrap {
    margin: 10px 0;
    position: relative;
}
 .icon{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
@media (min-width:320px) {
    .search-wrap {
    margin: 10px 0;
    position: none;
     width: 100%;
     display: block;
    }
    .icon{
        width: 100%;
    }
}
input#search-input {
    border: solid 1px #ccc;
    padding: 10px 6px;
    padding-right: 24px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 5px;
    max-width: 100%;
}

span#clear-icon {
    display: none;
    position: absolute;
    right: 1px;
    top: 1px;
    bottom: 1px;
    padding: 0px 5px;
    font-style: normal;
    font-size: 25px;
    user-select: none;
    cursor: pointer;
    color: #9e9e9e;
    z-index: 12;
    justify-content: center;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
}

/**  table style **/
.my-table {
    border-collapse: collapse;
    width: 100%;
    font-family: Arial, Helvetica, sans-serif;
}

.my-table tr {
    background-color: #ffffff;
    color: #000;
}

.my-table th {
    padding: 10px 10px;
    border: solid 1px #ccc;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
}

.my-table td {
    border: solid 1px #ccc;
    font-size: 13px;
    padding: 10px 10px;
    text-align: center;
}

.my-table thead > tr {
    background-color: #e9e9e9;
}

.my-table > tbody > tr:hover {
    background-color: #faffe3;
}

@media only screen and (max-width: 300px)
{
.form-ele-cont{
    width: 100%;
}
}
body {font-family: Arial, Helvetica, sans-serif;}
form {border: 3px solid #f1f1f1;}

input[type=text], input[type=password] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

button {
  background-color: #04AA6D;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 100%;
}

button:hover {
  opacity: 0.8;
}

.cancelbtn {
  width: auto;
  padding: 10px 18px;
  background-color: #f44336;
}

.imgcontainer {
  text-align: center;
  margin: 24px 0 12px 0;
}

img.avatar {
  width: 40%;
  border-radius: 50%;
}

.container {
  padding: 16px;
}

span.psw {
  float: right;
  padding-top: 16px;
}
