.auth-container {
    min-height: 170vh;
    display: flex;
    flex-direction: column;
    align-items: center;
	justify-content:flex-start;
    padding: 40px 15px;
    background: linear-gradient(135deg, var(--brand-primary) 0%, #825e17 100% );
}

.auth-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    max-width: 500px;
    width: 100%;
}

.tab-content {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 10px 20px;
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.nav-tabs {
    border-bottom: 2px solid #e0e0e0;
}

.nav-link {
    color: #666;
    border: none;
    border-bottom: 3px solid transparent;
    font-weight: 600;
    position: relative;
    bottom: -2px;
}

.nav-link.active {
    color: #667eea;
    border-bottom-color: #667eea;
    background: none;
}

.error-message {
    display: none;
    background: #f8d7da;
    color: #721c24;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.success-message {
    display: none;
    background: #d4edda;
    color: #155724;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.otp-section {
    display: none;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 0 10px;
}

.step {
    text-align: center;
    flex: 1;
}

.step-number {
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #666;
    margin: 0 auto 5px;
    font-weight: bold;
}

.step.active .step-number {
    background: #667eea;
    color: white;
}

.step.completed .step-number {
    background: #28a745;
    color: white;
}

.step-label {
    font-size: 12px;
    color: #666;
}

/* Logo Section */
.logo-container {
    display: flex;
    justify-content: center;
    padding: 30px 20px 10px;
    margin-bottom: 10px;
}

.company-logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 250px;
	height: 70px;
	background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
	border-radius: 5%;
	font-size: 2rem;
	color: white;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.company-logo:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
    color: white;
    text-decoration: none;
}
