@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

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

body {
    background-color: #f2f3f5;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    background-color: #ffffff;
    width: 100%;
    max-width: 450px;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.logo-header {
    margin-bottom: 30px;
}

.logo-icon {
    background-color: #00a84d;
    width: 80px;
    height: 80px;
    border-radius: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
}

.logo-header p {
    color: #70757a;
    font-size: 14px;
}

.form-group {
    text-align: left;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #3c4043;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: none;
    background-color: #f1f3f4;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: background-color 0.2s;
}

.form-group input:focus {
    background-color: #e8eaed;
}

.btn-login {
    width: 100%;
    padding: 12px;
    background-color: #00a84d;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.2s;
}

.btn-login:hover {
    background-color: #008f41;
}

hr {
    border: none;
    border-top: 1px solid #e8eaed;
    margin: 30px 0;
}