/* General Styles for Signup Page */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    background: linear-gradient(to right, #007bff, #0056b3);
}

.auth-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 500px;
    padding: 20px;
}

.auth-box {
    margin-top: 25px;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
    position: relative;
}

.auth-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.auth-header {
    text-align: center;
    margin-bottom: 20px;
}

.auth-header h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
}

.input-group {
    width: 100%;
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    transition: 0.3s;
}

.input-group input:focus {
    border-color: #007bff;
    outline: none;
}

.options {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #007bff;
    margin-bottom: 15px;
}

.options a {
    text-decoration: none;
}

.btn-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.btn-primary {
    width: 100%;
    padding: 12px;
    background: linear-gradient(to right, #007bff, #0056b3);
    color: white;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-primary:hover {
    background: linear-gradient(to right, #0056b3, #003f7f);
}

.switch-form {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}

.switch-form a {
    color: #007bff;
    font-weight: bold;
    text-decoration: none;
}
