/* Global Styles */
body {
    background: url('images/newbackgroud.jpg') no-repeat center center/cover;
    color: #ffffff;
    line-height: 1.6;
    font-family: "Delius", serif;
    font-weight: 400;
    font-style: normal;
}

/* Header Section */
header {
    color: #fff5e1;
    font-family: "Delius", serif;
    font-weight: 30;
    font-style: normal;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 38px 10px 10px;
}

nav .logo img {
    width: 250px;
    height: 100px;
}

nav .nav-links ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav .nav-links ul li {
    display: inline-block;
}

nav .nav-links ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5rem;
    font-family: "Delius", serif;
    font-weight: 400;
    font-style: normal;
    transition: color 0.3s ease;
}

nav .nav-links ul li a:hover {
    color: #16325B;
}

nav .login-signup a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    margin-right: 30px;
}

/* Login Container */
.login-container {
    color: #000;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 79.7vh;
    width: 100%;
}

/* Login Box */
.login-box {
    background: rgba(255, 245, 225, 0.3);
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(255, 245, 225, 0.5);
    padding: 30px;
    width: 350px;
    text-align: left;
    backdrop-filter: blur(5px);
    margin-right: 15%;
}

/* Tab Buttons */
.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.tab-btn {
    background: rgba(255, 245, 225, 0.5);
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 10px;
    transition: 0.3s;
}

.tab-btn.active {
    background: #16325B;
    color: white;
}

/* Login Form */
.login-form {
    display: none; /* Hide all forms by default */
    flex-direction: column;
}

.login-form.active-form {
    display: flex; /* Only the active form should be visible */
}

h2 {
    color: #230270;
    margin-bottom: 15px;
    text-align: center;
}

label {
    text-align: left;
    font-weight: 500;
}

/* Input Fields */
input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 245, 225, 0.1);
    color: #000;
    outline: none;
}

/* Login Button Container */
.login-button-container {
    display: flex;
    justify-content: flex-end; /* Moves button to the right */
    width: 100%;
    margin-top: 5px; /* Adds small space above the button */
}

/* Button Styles */
button {
    background: #f8c3a4;
    color: #212121;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    width: 40%;
}

button:hover {
    background: #16325B;
    color: #fff;
}

.button-container {
    margin-top: 20px; /* Adjust the value as needed */
    text-align: center;
}

input[type="password"] {
    margin-bottom: 20px; /* Adds space below the password input */
}

p {
    margin-top: 10px;
}

p a {
    color: #230270;
    text-decoration: none;
}

p a:hover {
    text-decoration: underline;
}
