body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(tree.gif) 
    no-repeat center center/cover;
    font-family: Arial, sans-serif;
}

.registration-container {
    background: rgba(209, 136, 46, 0.6);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    width: 350px;
    
}

.registration-container h1 {
    color: rgb(26, 15, 15);
    margin-bottom: 25px;
}

.registration-container input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 8px;
    border: none;
    outline: none;
}

.registration-container button {
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    border-radius: 8px;
    border: none;
    background-color: #5a1e00;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.registration-container button:hover {
    background-color: #8b2e00;
}

.back-home {
    display: block;
    margin-top: 15px;
    color: #000000;
    text-decoration: none;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 15px 40px;

    background-color: rgba(23, 3, 3, 0.6);
    
    
}


.logo {
    font-size: 20px;
    font-weight: bold;
    color: white;
    
    
}


.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: rgb(255, 244, 244);
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    opacity: 0.7;
}


body {
    padding-top: 100px;
}