:root {
    --navy: #003366;
    --orange: #FF9900;
    --teal: #006666;
    --white: #ffffff;
}

/* Hybrid Style */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;700&family=Outfit:wght@300;400;500;600;700&display=swap');

/* Base Styles */
body {
    font-family: 'Outfit', sans-serif;
    background: #194775;
    margin: 0;
}

h1, h2, h3, h4, h5, h6,
nav, nav *, .admin-nav, .admin-nav * {
  font-family: 'Oswald', sans-serif !important;
}

/* Navigation  */
nav {
  background: #003366;
  padding-right: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.logo img {
    height: 45px;
    width: auto;
}

nav ul {
    display: flex;
    gap: 30px;
    list-style-type: none;
    margin: 0;
    padding: 0;
} 

/* Reset Container */
.reset-container-wraper{
    height: 980px;
    align-content:center;
}
.reset-container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 90%;
    max-width: 400px;
    margin: 8rem auto;
}

h1 {
    color: #003366;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: #003366;
}

input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box;
    margin-bottom: 20px;
}

button {
    color: #003366;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    transition: background 0.3s ease;
}

button:hover {
    background: #FF9900;
    color:#fff
}

.success-message {
    display: none;
    color: #28a745;
    margin-top: 1rem;
    text-align: center;
}

.error-message {
    color: #dc3545;
    margin-top: 1rem;
    text-align: center;
}

.login-link {
    text-align: center;
    margin-top: 1.5rem;
}

.login-link a {
    color: var(--navy);
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}

/* Navigation Links */
nav ul li a {
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    display: flex;
    border-radius: 10px;
    padding: 8px 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}



nav ul li a:hover {
    background: #FF9900;
    color: #000000;
}

nav ul li.active a {
    background-color: #FF9900;
    color:#000000;
}