@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

html, body {
    height: 100%;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/background-secure.webp') no-repeat center center / cover;
    color: white;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

.header, .footer {
    text-align: center;
    padding: 10px;
    background-image: linear-gradient(to left, #6895EB, #25B5F4, #64E1C9);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Allow wrapping on small screens */
}

.header .logo {
    margin-left: 20px;
}

.header .support-btn {
    margin-right: 20px;
    background-color: white;
    color: #003366;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
}

.header .support-btn:hover {
    background-color: #003366;
    color: white;
}
footer span {
  color: white;
}
.form-container {
    flex: 1;
    width: 90%;
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 10px;
}

.form-heading {
    text-align: center;
    margin-bottom: 20px;
    color: #003366;
}

label {
    color: #003366;
    font-weight: 600;
}

input[type="text"], input[type="email"], input[type="password"], input[type="file"], textarea {
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    margin-bottom: 20px;
    box-sizing: border-box;
    color: #003366;
}

button {
    padding: 10px 20px;
    background-color: #25B5F4;
    color: white;
    border: none;
    cursor: pointer;
    width: 100%;
    border-radius: 5px;
    text-align: center;
}

button:hover {
    background-color: #64E1C9;
}

.button-group {
    display: flex;
    justify-content: center;
}

.notification {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 15px;
    background-color: #28a745;
    color: white;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.notification.error {
    background-color: #dc3545;
}

.status-message {
    text-align: center;
    margin-top: 10px;
    font-size: 16px;
    color: #003366;
}

@media (max-width: 600px) {
    .form-container {
        padding: 10px;
        width: 95%;
        margin: 10px auto;
    }
    .header, .footer {
        flex-direction: column;
        text-align: center;
    }
    .header .logo, .header .support-btn {
        margin: 10px 0;
    }
    .footer .col-lg-8, .footer .col-lg-4 {
        text-align: center;
    }
    .footer .col-lg-4 {
        margin-top: 10px;
    }
}

@media (min-width: 1200px) {
    .form-container {
        max-width: 800px;
    }
}


@media (min-width: 1200px) {
    .form-container, .dashboard-container {
        max-width: 900px;
    }
}
