* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: default;
}

body {
    font-family: myFirstFont;
    margin: 0;
    padding: 0;
    background-color: grey;
}

/* Fonts */
@font-face {
    font-family: myFirstFont;
    src: url(Century\ Gothic.ttf);
}
@font-face {
    font-family: f2;
    src: url(Chadenia.ttf);
}
@font-face {
    font-family: f3;
    src: url(gothic\ medium.ttf);
}

/* Header/Nav */
.navbar {
    width: 100%;
    background-color: #161616;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 5%;
    flex-wrap: wrap;
}

.navbar .logo {
    width: 120px;
    height: auto;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    padding: 15px 20px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.navbar a:hover {
    background-color: #a1f599;
    opacity: 0.8;
    border-radius: 5px;
}

/* Content Styling */
.container {
    display: flex;
    justify-content: center;
    margin-top: 100px;
    flex-wrap: wrap;
}

.login-section {
    color: black;
    background: #ffffff;
    padding: 100px;
    border-radius: 5px;
    margin: 5px;
    text-align: center;
}

.register-section  {
    color: black;
    background: #ffffff;
    padding: 100px;
    border-radius: 5px;
    margin: 5px;
    padding-top: 150px;
    text-align: center;
}
input, button {
    background-color: #1616165b;
    display: block;
    width: 100%;
    margin-top: 20px;
    padding: 10px;
    border: none;
    border-radius: 10px;
}

button {
    background: blue;
    color: white;
    cursor: pointer;
}

.register-btn {
    width: 300px;
    display: block;
    background: green;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 200px;
    border-radius: 10px;
}

img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}
.human-img {
    width: 200px;
    height: auto;
    object-fit: contain;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.human-img:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar a {
        width: 100%;
        text-align: left;
    }

    .container {
        flex-direction: column;
    }

    .login-section, .register-section {
        width: 90%;
        padding: 50px;
    }
}
