/* Basic body styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    height: 100vh;
    display: flex;
    align-items: center; /* Centers vertically */
    justify-content: center; /* Centers horizontally */
}

/* Container styling to center form and header */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: #fff;
    text-align: center;
}

/* Logo styling */
.logo {
    width: 160px; /* Adjust size as needed */
    height:80px;
    border-radius: 25%; /* Makes the logo circular */
    margin-bottom: 15px; /* Space between logo and header */
}

/* Header styling */
h1 {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 0px; /* Adds space between header and form fields */
}

/* Header styling */
h4 {
    font-size: 0.9em;
    color: #45a049;
    margin-bottom: 20px; /* Adds space between header and form fields */
    margin-top: 5px;
}

/* Label styling */
label {
    display: block;
    font-size: 1em;
    color: #333;
    margin-bottom: 5px;
    text-align: left;
}

/* Input field styling */
input[type="text"],
input[type="number"] {
    width: 100%; /* Full width */
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
    border: 1px solid #ddd;
    font-size: 1em;
}

/* Button styling */
button {
    width: 100%;
    padding: 12px;
    background-color: #DB7600;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    margin-bottom: 15px;
}

button:hover {
    background-color: #45a049;
}

/* Notification styling */
#notification {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 300px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: #4caf50; /* Default to green for success */
    color: #fff;
    font-size: 1em;
    display: none; /* Hidden by default */
}

#notification.error {
    background-color: #f44336; /* Red for error */
}

/* Close button for notification */
#notification .close-btn {
    margin-top: 10px;
    background: none;
    border: none;
    color: #fff;
    font-weight: bold;
    font-size: 1em;
    cursor: pointer;
}

/* Top-up link styling */
.top-up-link {
    position: absolute;
    top: 10px;
    right: 1px;
    font-size: 12px;
    padding: 5px 10px;
    background-color: orange;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
 
}

.top-up-link:hover {
    background-color: #45a049;
}
