/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-image: url("Arvind Hospital.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color:white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.logo {
    width: 65px;
    height: 50px;
    margin-right: 10px;
}

h2 {
    color: #00796b;
    text-align: center;
    font-size: 24px;
    margin-bottom: 25px;
}

/* Form Styles */
form {
    display: flex;
    flex-direction: column;
}

label {
    color: #004d40;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"],
input[type="date"],
select {
    padding: 10px;
    border: 1px solid #b2dfdb;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 16px;
    color: #004d40;
    background-color: #e0f2f1;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="date"]:focus,
select:focus {
    border-color: #00796b;
    outline: none;
}

/* Button Styles */
input[type="button"] {
    background-color: #00796b;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

input[type="button"]:hover {
    background-color: #004d40;
}

/* Link and Footer Styles */
h4 {
    text-align: center;
    margin-top: 20px;
    color: #555555;
}

h4 a {
    color: #00796b;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

h4 a:hover {
    color: #004d40;
}
