/* General Styles */
body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    background-size: cover;
    background-position: center;
}

/* Container */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
}

/* Form Styles */
.auth-form {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    z-index: 2;
    text-align: center;
    width: 300px;
}

.auth-form h2 {
    margin-bottom: 20px;
    color: #4A693F;
}

.auth-form label {
    display: block;
    margin-bottom: 10px;
    color: #333;
}

.auth-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Password container */
.password-container {
    position: relative;
    margin-bottom: 15px;
}

.password-container input {
    padding-right: 40px;
    /* Space for the icon */
}

.password-container i {
    position: absolute;
    right: 10px;
    top: 36%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 16px;
    color: #4A693F;
    background: transparent;
    border-radius: 35px;
    

}

/* Form Buttons */
.auth-form button {
    background-color: #4A693F;
    color: #FFFFFF;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

.auth-form button:hover {
    background-color: #3a5330;
}

.back-btn {
    margin-top: 10px;
    background-color: #C87551;
    color: #FFFFFF;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

.back-btn:hover {
    background-color: #A85C40;
}

.switch-link {
    margin-top: 15px;
}

.switch-link a {
    color: #4A693F;
    text-decoration: none;
}

.switch-link a:hover {
    text-decoration: underline;
}

.auth-container .auth-form #signupForm .terms {
    color: #4A693F;
    text-decoration: none;
}

.auth-container .auth-form #signupForm .terms:hover {
    text-decoration: underline;
}