*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{

    background:#0b6b3a;
    background:linear-gradient(180deg,#0b6b3a,#159447);

    display:flex;
    justify-content:center;
    align-items:center;

    min-height:100vh;
}

.login-container{

    width:92%;
    max-width:360px;

    background:white;

    padding:35px 28px;

    border-radius:24px;

    box-shadow:0 15px 35px rgba(0,0,0,.25);

    text-align:center;
}

.logo{

    margin-bottom:18px;
}

.logo img{

    width:130px;
    height:130px;

    object-fit:contain;
}

h3{

    color:#0b6b3a;
    font-size:32px;

    margin-bottom:6px;
}

.subtitle{

    color:#666;

    font-size:15px;

    margin-bottom:30px;
}

.campo{

    text-align:left;

    margin-bottom:18px;
}

.campo label{

    display:block;

    color:#444;

    margin-bottom:6px;

    font-size:14px;

    font-weight:bold;
}

.campo input{

    width:100%;

    padding:14px;

    border-radius:12px;

    border:1px solid #d8d8d8;

    outline:none;

    font-size:16px;

    transition:.2s;
}

.campo input:focus{

    border-color:#0b6b3a;

    box-shadow:0 0 0 3px rgba(11,107,58,.15);
}

.btn-login{

    width:100%;

    margin-top:12px;

    padding:15px;

    border:none;

    border-radius:14px;

    background:#0b6b3a;

    color:white;

    font-size:17px;

    font-weight:bold;

    cursor:pointer;

    transition:.25s;
}

.btn-login:hover{

    background:#0e8045;
}

.esqueci{

    display:block;

    margin-top:20px;

    color:#0b6b3a;

    text-decoration:none;

    font-size:14px;
}

.versao{

    margin-top:35px;

    color:#999;

    font-size:12px;
}