
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    background-image: url('pharmacybg.png');
    background-size: cover;
    background-position: center;
    font-family: 'Assistant', sans-serif;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #408C67;
    background-color: #e0f2f1; 
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(255, 255, 255, 0.3); 
    z-index: 0;
}

#login-block {
    position: relative;
    z-index: 1;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(74, 124, 138, 0.2); 
    width: 450px;
    padding: 45px 40px;
    text-align: center;
    border: 3px solid #408C67;
}

#login-block h2 {
    margin-bottom: 32px;
    color: #408C67;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.input, select {
    width: 100%;
    padding: 16px 18px;
    margin: 14px 0;
    border: 2px solid #a6c1b4; 
    border-radius: 12px;
    background-color: #e5efe9;
    font-size: 17px;
    color: #4a7c8a;
    font-weight: 600;
    box-sizing: border-box;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.input:focus, select:focus {
    border-color: #4a7c8a;
    background-color: #d0e1dc; 
    outline: none;
    box-shadow: 0 0 10px 3px #4a7c8a80;
}

button {
    width: 50%;
    background-color: #408C67;
    color: #ffffff;
    padding: 15px 0;
    border: none;
    border-radius: 14px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    letter-spacing: 1px;
    box-shadow: 0 8px 18px rgba(64, 140, 103, 0.7);
}

button:hover {
    background-color: #4a7c8a;
    box-shadow: 0 10px 22px rgba(74, 124, 138, 0.8);
}

p {
    margin-top: 30px;
    color: #4a7c8a;
    font-weight: 600;
    font-size: 16px;
}

p a {
    color: #408C67;
    text-decoration: none;
    font-weight: 800;
    transition: color 0.3s ease;
}

p a:hover {
    color: #2f664f; 
}

@media (max-width: 420px) {
    #login-block {
        width: 90%;
        padding: 35px 25px;
        border-width: 2px;
    }
}
</content>
</create_file>