:root {
    --primary-red: #ff0036;
    --light-gray: #f2f2f2;
    --dark-gray: #333;
    --border-gray: #ddd;
    --text-color: #666;
}
body {
    background: #fff;
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-gray);
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-container {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    padding: 32px 24px 24px 24px;
    width: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.logo {
    width: 300px;
    margin-bottom: 8px;
}
.brand-title {
    font-size: 2.1rem;
    font-weight: bold;
    margin: 0 0 2px 0;
    letter-spacing: 1px;
}
.brand-title .hiv {
    color: #e60000;
}
.brand-title .ocate {
    color: #222;
}
.brand-sub {
    font-size: 1rem;
    color: #222;
    margin-bottom: 18px;
    font-weight: 500;
}
.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.login-form label {
    font-weight: 600;
    margin-bottom: 2px;
    margin-top: 8px;
    color: #222;
}
.input-group {
    display: flex;
    align-items: center;
    background: #f7f7f7;
    border: 1.5px solid #ccc;
    border-radius: 8px;
    padding: 0 12px;
    margin-bottom: 6px;
}
.input-group input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 1rem;
    padding: 12px 8px;
    flex: 1;
}
.input-icon {
    color: #555;
    font-size: 1.1rem;
    margin-right: 8px;
    cursor: default;
}
.input-group .eye {
    margin-left: 8px;
    cursor: pointer;
}
.forgot-row {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
}
.forgot-link {
    color: #2196f3;
    font-size: 0.98rem;
    text-decoration: none;
}
.forgot-link:hover {
    text-decoration: underline;
}
.login-btn {
    width: 100%;
    background: #e60000;
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 13px 0;
    font-size: 1.15rem;
    font-weight: 600;
    margin-top: 8px;
    cursor: pointer;
    transition: background 0.2s;
}
.login-btn:hover {
    background: #c40000;
}
.manual-btn {
    width: 100%;
    background: #818891ff;
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 13px 0;
    font-size: 1.15rem;
    font-weight: 600;
    margin-top: 8px;
    cursor: pointer;
    transition: background 0.2s;
}
.manual-btn:hover {
    background: #8c939bff; 
}
