*,
*::after,
*::before{
    padding: 0;
    margin: 0;
    border-collapse: collapse;
}
body{
    font-family: "PT Mono", monospace;

}
.login-page{
    background-color: #4caf50;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

}
.container_form,
.form-forgat{
    background-color: #fff;
    height:auto;
    width: 280px;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    border: 1px solid #ddd;
    padding: 10px 10px 20px 10px;

}
.header-form{
    padding: 10px;

}
.header-form h4{
    text-align: center;
    padding: 10px;
    text-transform: uppercase;
    color: silver;
    font-weight: 600;
    text-shadow: 0 0 1px rgba(0,0,0,0.1);
    font-size: 24px;
}
.logo-form{
    text-align: center;
}
.header-form h5{
    text-align: center;
    margin-top: -5px;
    text-transform: uppercase;
    background: linear-gradient(to right, #4caf50 0%, #94f18e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.content-form{
    margin-top: 5px;
    padding: 10px;

}
.login-form-group{
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-bottom: 1px dashed #4caf50;
    width: 100%;
    padding: 10px 0 4px 0;
    margin: 15px 0;
}

.login-form-group label{
    width: 20%;
    color: #4caf50;
}
.login-form-group .text-login{
    flex: 1;
    padding: 5px 10px;
    border:none;
    outline: none;
    background-color: transparent;
}
.footer-form{
    padding: 10px;
}
.btn-login{
    padding: 10px;
    width: 100%;
    margin: auto;
    background-color: #4caf50;
    cursor: pointer;
    color: #fff;
    font-size: 17px;
    transition: all 0.3s ease-in-out;
    border: none;
    border-radius: 3px;
}
.btn-login:hover{
    background-color: #4caf50;
}
.message-login{
    margin: 10px;
}
.message-login p{
    padding: 10px;
    text-align: center;
    color: #4caf50;
}
input{
    color: #4caf50;
}
input::placeholder{
    color: #4caf50;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    opacity: 1;
}
input:focus::placeholder{
    font-size: 14px;
    font-weight: 100;
    opacity: 0.7;
}