/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
    background: linear-gradient(135deg, #ff2d95 0%, #5b24ff 100%);
    height: 100vh;
    display: flex;
    flex-direction: column; /* Ensures navbar stays at the top */
}

header {
    width: 100%;
}

.main-content {
    flex: 1; /* Allows it to take remaining space */
    display: flex;
    align-items: center; /* Centers vertically */
    justify-content: center; /* Centers horizontally */
}

.container {
    width: 100%;
    max-width: 500px;
    padding: 20px;
}
.form-container {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Tabs */
.tabs {
    display: flex;
    border-bottom: 1px solid #eee;
    margin-top: 20px;
}

.tab-btn {
    flex: 1;
    padding: 15px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #777;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
  
    color: #ff2d95;
    border-bottom: 3px solid #ff2d95;
}

.tab-btn:hover {
    background-color: rgba(135, 206, 235, 0.1);
}

/* Tab Content */
.tab-content {
    display: none;
    padding: 30px;
}

.tab-content.active {
    display: block;
}

h2 {
    color: #ff2d95;
    margin-bottom: 25px;
    text-align: center;
    font-size: 24px;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

input, select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    transition: border 0.3s ease;
}

input:focus, select:focus {
    border-color: #1E90FF;
    outline: none;
}

.btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #ff2d95 0%, #5b24ff 100%);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #1a7fd1;
}

.form-footer {
    text-align: center;
    margin-top: 15px;
}

.forgot-password {
    color: #1E90FF;
    text-decoration: none;
    font-size: 14px;
}

.forgot-password:hover {
    text-decoration: underline;
}

/* File Input Styling */
input[type="file"] {
    padding: 8px;
}

/* Error Message */
.error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
}

/* Success Message */
.success-message {
    color: #2ecc71;
    font-size: 14px;
    margin-top: 5px;
    text-align: center;
    padding: 10px;
    background-color: rgba(46, 204, 113, 0.1);
    border-radius: 5px;
}