/* Overall page style */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fff;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}


.logo {
    margin-top: 30px;
    margin-bottom: 20px;
}

.logo img {
    width: 100px;
    height: auto;
}


h1 {
    color: cadetblue;
    font-size: 32px;
    margin-bottom: 20px;
}


/* Form styles */
form {
    background-color: white;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 300px;
}

/* Labels */
label {
    display: block;
    color: #333;
    margin-bottom: 6px;
    font-weight: bold;
}

/* Inputs */
input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 2px solid #cbd6d6;
    border-radius: 5px;
    margin-bottom: 20px;
    transition: border-color 0.3s;
}

input[type="text"]:focus,
input[type="password"]:focus {
    border-color: cadetblue;
    outline: none;
}

/* Buttons */
input[type="submit"],
input[type="reset"] {
    background-color: cadetblue;
    color: white;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
    transition: background-color 0.3s;
}

input[type="reset"] {
    background-color: #ff0404;
}

input[type="submit"]:hover {
    background-color: #4e7d7e;
}

input[type="reset"]:hover {
    background-color: #99a9a9;
}

footer {
  background-color: rgb(95, 158, 160);
  color: white;
  text-align: center;
  padding: 10px;
  width : 100%;
}

.dropdown {
            position: relative;
            display: inline-block;
        }

        /* Style the button */
        .dropdown-button {
            background-color: #3498db;
            color: white;
            padding: 10px 20px;
            font-size: 16px;
            border: none;
            cursor: pointer;
            border-radius: 4px;
        }

        /* Dropdown content (hidden by default) */
        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #f1f1f1;
            min-width: 160px;
            z-index: 1;
            border-radius: 4px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        }

        /* Links inside the dropdown */
        .dropdown-content a {
            color: black;
            padding: 10px 16px;
            text-decoration: none;
            display: block;
        }

        /* Hover effects */
        .dropdown-content a:hover {
            background-color: #ddd;
        }

        /* Show dropdown on hover (optional alternative) */
        .show {
            display: block;
        }