/* General form styling */
html, body {
    height: 100%; /* Ensure the body takes up the full height of the viewport */
    margin: 0; /* Remove default margin */
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
  }
form {
    margin-top: 10%;
    max-width: 400px; /* Limit the form width */
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

}


input[type="text"],
input[type="password"] {
    width: 95%; /* Make inputs full width */
    padding: 10px;
    margin-bottom: 15px; /* Space between fields */
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}
.Login{
    text-align: center;

}

button {
    width: 100%; /* Make button full width */
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}
.link{
    text-align: center;
}
a{
    text-decoration: none;
}


button:hover {
    background-color: #45a049;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
    form {
        width: 90%; /* Slightly reduce width on small screens */
    }

    input[type="text"],
    input[type="password"],
    button {
        font-size: 14px; /* Smaller font size on mobile */
    }
}

@media (max-width: 400px) {
    input[type="text"],
    input[type="password"],
    button {
        font-size: 12px; /* Further reduce font size for very small screens */
    }
}
