body {
	background: #1a1a1a;
	min-height: 100vh;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
}

.auth-container {
    background: #2a2a2a;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    overflow: hidden;
    width: 100%;
    max-width: 900px;
    min-height: 600px;
    display: flex;
    border: 1px solid #404040;
}

.auth-left {
    flex: 1;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.auth-right {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.tagline {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.5;
}

.features-list {
    list-style: none;
    text-align: left;
}

.features-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.features-list li:before {
    content: "✓";
    color: white;
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.2rem;
}

.auth-form {
    width: 100%;
}

.auth-tabs {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 2px solid #404040;
}

.auth-tab {
    flex: 1;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    border: none;
    background: none;
    font-size: 1.1rem;
    font-weight: bold;
    color: #ccc;
    transition: color 0.3s ease;
    border-bottom: 3px solid transparent;
}

.auth-tab.active {
    color: #dc2626;
    border-bottom-color: #dc2626;
    background-color: transparent !important;
}

.auth-tab:hover {
    color: #dc2626;
    background-color: transparent !important;
}

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

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: white;
}

.form-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #404040;
    border-radius: 8px;
    font-size: 1rem;
    background: #3a3a3a;
    color: white;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #dc2626;
}

.form-select {
    width: 100%;
    padding: 15px;
    border: 2px solid #404040;
    border-radius: 8px;
    font-size: 1rem;
    background: #3a3a3a;
    color: white;
    transition: border-color 0.3s ease;
}

.form-select:focus {
    outline: none;
    border-color: #dc2626;
}

.btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-primary {
    background: #dc2626;
    color: white;
}

.btn-primary:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #3a3a3a;
    color: #ccc;
    border: 2px solid #404040;
}

.btn-secondary:hover {
    background: #4a4a4a;
}

.form-note {
    text-align: center;
    margin-top: 20px;
    color: #ccc;
    font-size: 0.9rem;
}

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

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

.user-type-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.user-type-card {
    padding: 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.user-type-card.selected {
    border-color: #4CAF50;
    background: #f8fff8;
}

.user-type-card:hover {
    border-color: #4CAF50;
}

.user-type-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.corporate-icon {
    color: #4CAF50;
}

.admin-icon {
    color: #2196F3;
}

@media (max-width: 768px) {
    .auth-container {
        flex-direction: column;
        margin: 20px;
    }
    
    .auth-left {
        order: 2;
    }
    
    .auth-right {
        order: 1;
    }
    
    .user-type-selector {
        grid-template-columns: 1fr;
    }
}