/* Reset Default Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Custom Top Bar */
.custom-top-bar {
    background: black;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.custom-highlight {
    color: orange;
    font-weight: bold;
}

.custom-contact-info span {
    margin-left: 10px;
}

/* Custom Navigation Bar */
.custom-navbar {
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.custom-logo img {
    height: 50px; /* Adjust logo size */
}

.custom-nav-links {
    list-style: none;
    display: flex;
}

.custom-nav-links li {
    margin: 0 15px;
}

.custom-nav-links a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s;
}

.custom-nav-links a:hover {
    color: orange;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .custom-top-bar {
        flex-direction: column;
        text-align: center;
    }

    .custom-navbar {
        flex-direction: column;
        align-items: center;
    }

    .custom-nav-links {
        flex-direction: column;
        text-align: center;
    }

    .custom-nav-links li {
        margin: 10px 0;
    }
}
/* body */ 
body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.form-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 400px;
}

.form-container h2 {
    text-align: center;
    color:#1fadc5;
}

label {
    font-size: 14px;
    color: #333;
}

input[type="text"], input[type="email"], input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #1da3bb;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #1ca0b8;
}

.form-container p {
    text-align: center;
}

.form-container a {
    color: #1badc7;
    text-decoration: none;
}

.form-container a:hover {
    text-decoration: underline;
}
