body {
    font-family: 'Roboto', sans-serif;
    color: #899198;
    font-size: 16px;
    line-height: 27px;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f2f2f2;
}

.container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.login-box {
    max-width: 400px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
}

.logo-login {
    width: 200px;
    margin-bottom: 20px;
}

h1 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #3d4c58;
}

.input-custom {
    width: 90%;
    padding: 10px;
    margin-bottom: 15px;
    font-size: 16px;
    border: 1px solid #d7dbdf;
    border-radius: 3px;
}

.input-custom:focus {
    border-color: #FF9933;
    outline: none;
}

.btn {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    background-color: #FF9933;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.btn:hover {
    background-color: #e68a00;
}
