/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Georgia", serif;
    background-color: #f9f9f9;
    color: #111;
}

/* --------------------- */
.navbar {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
    background-color: #ffffff;
}

.navbar a {
    text-decoration: none;
    color: #111;
    font-size: 14px;
    letter-spacing: 1.5px;
}

.navbar a:hover {
    text-decoration: underline;
}

/* ---------------- */
.main {
    text-align: center;
    padding: 120px 20px;
}

.main h1 {
    font-size: 52px;
    font-weight: bold;
    letter-spacing: 6px;
    margin-bottom: 20px;
}

.main p {
    max-width: 650px;
    margin: 0 auto 40px;
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.btn {
    padding: 12px 35px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    border: 1px solid #111;
    background-color: #111;
    color: #fff;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #333;
}

.btn-outline {
    background-color: transparent;
    color: #111;
}

.btn-outline:hover {
    background-color: #111;
    color: #fff;
}

/* ----------------  */
.container {
    width: 350px;
    margin: 80px auto;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.container h2 {
    text-align: center;
    margin-bottom: 25px;
}

form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

form input[type="text"],
form input[type="email"],
form input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form input[type="submit"] {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    background-color: #111;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

form input[type="submit"]:hover {
    background-color: #333;
}

form input[type="radio"],
form input[type="checkbox"] {
    margin-right: 5px;
}

.container p {
    text-align: center;
    margin-top: 15px;
}

.container a {
    text-decoration: none;
    color: #111;
    font-weight: bold;
}

.container a:hover {
    text-decoration: underline;

}
