/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/* Lumen Co. Global Styles */

body {
    margin: 0;
    background-color: #F5F1E7;
    color: #333333;
    font-family: "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
}

.password-box {
    background-color: white;
    padding: 35px;
    border-radius: 15px;
    max-width: 350px;
    margin: auto;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}


.password-box input {
    width: 90%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
}


#error {
    color: #8b3a3a;
    margin-top: 15px;
}


/* Header */

header {
    background-color: #111111;
    color: #F5F1E7;
    padding: 30px;
    text-align: center;
}

.logo {
    width: 120px;
    height: auto;
}


/* Navigation */

nav {
    margin-top: 20px;
}

nav a {
    color: #C8A45D;
    text-decoration: none;
    margin: 0 12px;
    font-size: 15px;
}

nav a:hover {
    color: #91A68B;
}


/* Main Sections */

section {
    padding: 60px 10%;
}


/* Headings */

h1, h2, h3 {
    color: #3F5144;
    font-weight: 500;
}


/* Hero Section */

.hero {
    text-align: center;
    padding: 90px 10%;
}

.hero h1 {
    font-size: 42px;
}


/* Buttons */

.button {
    display: inline-block;
    background-color: #3F5144;
    color: #F5F1E7;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    margin-top: 20px;
}

.button:hover {
    background-color: #C8A45D;
}


/* Program Cards */

.cards {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background-color: white;
    padding: 25px;
    width: 250px;
    border-radius: 15px;
    border-top: 4px solid #C8A45D;
}

.login-box {
    background: white;
    max-width: 420px;
    margin: 40px auto;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
    text-align: center;
}

.login-box input {
    width: 90%;
    padding: 12px;
    margin-top: 8px;
    margin-bottom: 18px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}

.login-box label {
    font-weight: bold;
}

.login-box button {
    width: 100%;
}

#error {
    color: #9b2d2d;
    margin-top: 15px;
}


/* Footer */

footer {
    background-color: #111111;
    color: #F5F1E7;
    padding: 25px;
    text-align: center;
}

footer a {
    color: #C8A45D;
}