﻿


body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: url('pharm_pills.png') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    width: 300px;
    color: #fff;
}

.logo {
    width: 80px;
    margin-bottom: 15px;
}

input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
}

button {
    width: 100%;
    padding: 10px;
    background: #00aaff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

    button:hover {
        background: #0088cc;
    }

.options {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-top: 10px;
}

``
