* {
    box-sizing: border-box;
  }
  
body {
    margin:0;
    height: 100vh;
    overflow: hidden; 
    display: flex;
    margin-top: 10%;
    justify-content: center;
    background: #ecf0f3;
    font-family: Arial, Helvetica, sans-serif;
}
.login-div {
    width:330px;
    height: 500px;
    padding: 25px 35px 35px 35px;
    border-radius: 35px;
    background: #ecf0f3;
    box-shadow: 13px 13px 20px #cbced1,
                -13px -13px 20px #ffffff;
}

.title {
    text-align: center;
    font-size: 28px;
    padding-top: 15px;
    letter-spacing: 0.5px;
}
.fields {
    width: 100%;
    padding: 35px 5px 5px 0px;
  
}
.fields input {
    border: none;
    outline:none;
    background: none;
    font-size: 18px;
    color: #555;
    margin-left: 10px;
    padding: 20px 10px 10px 5px;
}

.equel{
    margin-bottom: 35px;
    color: #1995c3;
    font-weight: bold;
    font-size: 25px;
    text-align: center;
}

.output-text{
    border: none;
    outline:none;
    background: none;
    font-size: 18px;
    color: #555;
    margin-left: 10px;
    padding: 20px 10px 10px 5px;
}

.username, .password {
    margin-bottom: 35px;
    border-radius: 15px;
    display: flex;
    box-shadow: inset 8px 8px 8px #cbced1,
                inset -8px -8px 8px #ffffff;
}

.output{
    margin-bottom: 35px;
    border-radius: 15px;
    display: flex;
    box-shadow: 13px 13px 20px #cbced1,
                -13px -13px 20px #ffffff;
}

.signin-button {
    outline: none;
    border:none;
    width:100%;
    height: 45px;
    border-radius: 15px;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    color:#fff;
    text-align: center;
    background: #1995c3;
    box-shadow: 3px 3px 8px #b1b1b1,
                -3px -3px 8px #ffffff;
    transition: 0.5s;
  }
  
  .signin-button:hover {
    background:#2f3ddb;
  }