* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #e0e0e0;
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.premium-container {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 100;
}

.premium-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    color: #000;
    border: none;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.premium-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.premium-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: rgba(30, 30, 30, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    min-width: 280px;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.premium-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.premium-benefits h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-align: center;
}

.premium-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.premium-benefits li {
    display: flex;
    align-items: flex-start;
    padding: 0.75rem 0;
    color: #e0e0e0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    padding-left: 1.8rem;
    line-height: 1.4;
    text-align: left;
}

.premium-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: #00d4ff;
    font-weight: bold;
    font-size: 1rem;
    line-height: 1;
    width: 1.2rem;
    text-align: center;
}

.premium-benefits li:last-child {
    border-bottom: none;
}

.login-btn {
    width: 100%;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #000;
    border: none;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.login-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.register-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.register-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.logo i {
    font-size: 2.5rem;
    color: #00d4ff;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.3));
}

.logo h1 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1rem;
    color: #a0a0a0;
    font-weight: 400;
}

.main-content {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: start;
}

.form-container {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
}

.form-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.form-header p {
    color: #a0a0a0;
    font-size: 1rem;
}

.vote-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: #ffffff;
    font-size: 0.95rem;
}

.form-group label i {
    color: #00d4ff;
    width: 16px;
}

input[type="text"], textarea {
    background: rgba(20, 20, 20, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    resize: none;
}

input[type="text"]:focus, textarea:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
    background: rgba(20, 20, 20, 0.95);
}

textarea {
    min-height: 80px;
    max-height: 120px;
    resize: vertical;
}

.char-counter {
    text-align: right;
    font-size: 0.85rem;
    color: #808080;
}

.projects-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: end;
}

.vs-divider {
    display: flex;
    align-items: end;
    justify-content: center;
    height: 60px;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.vs-divider span {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.submit-btn {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #000;
    border: none;
    border-radius: 12px;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn.loading {
    pointer-events: none;
}

.btn-loading {
    display: none;
}

.submit-btn.loading .btn-loading {
    display: block;
}

.submit-btn.loading i:not(.btn-loading i) {
    display: none;
}

.results-container {
    display: none;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.results-container.show {
    display: block;
    animation: slideIn 0.3s ease-out;
}

.results-content {
    color: #e0e0e0;
    line-height: 1.6;
}

.notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #000;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.notification.show {
    transform: translateX(0);
}

.notification.error {
    background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
    color: #fff;
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.3);
}

.footer {
    text-align: center;
    padding: 1rem 0;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #808080;
    font-size: 0.9rem;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .form-container {
        padding: 1.5rem;
    }
    
    .projects-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .vs-divider {
        height: auto;
        margin: 0;
    }
    
    .vs-divider span {
        padding: 0.5rem 1rem;
    }
    
    .notification {
        top: 1rem;
        right: 1rem;
        left: 1rem;
        transform: translateY(-100px);
    }
    
    .notification.show {
        transform: translateY(0);
    }
    
    .premium-container {
        position: relative;
        top: auto;
        right: auto;
        text-align: center;
        margin-top: 1rem;
    }
    
    .premium-dropdown {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 0.5rem;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .modal-content {
        margin: 1rem;
        width: calc(100% - 2rem);
    }
}

@media (max-width: 480px) {
    .logo {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
    }
    
    .submit-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

.form-group.loading input,
.form-group.loading textarea {
    opacity: 0.7;
    pointer-events: none;
}

.result-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(40, 40, 40, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.result-section h4 {
    color: #00d4ff;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.vote-summary {
    background: rgba(20, 20, 20, 0.5);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.project-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.project-item {
    text-align: center;
    padding: 1rem;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.project-item h5 {
    color: #00d4ff;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.project-item p {
    color: #ffffff;
    font-weight: 600;
}

.vote-summary .vs {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.vote-text {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.vote-text h5 {
    color: #00d4ff;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.vote-text p {
    color: #e0e0e0;
    font-style: italic;
    line-height: 1.5;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #00d4ff;
}

.analysis-results {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.metric-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(20, 20, 20, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.metric-label {
    color: #a0a0a0;
    font-weight: 500;
}

.metric-value {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
}

.metric-value.risk-low {
    color: #2ed573;
}

.metric-value.risk-medium {
    color: #ffa502;
}

.metric-value.risk-high {
    color: #ff4757;
}

.analysis-text {
    background: rgba(20, 20, 20, 0.5);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.analysis-text h5 {
    color: #00d4ff;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.analysis-text p {
    color: #e0e0e0;
    line-height: 1.6;
}

.risk-factors {
    background: rgba(20, 20, 20, 0.5);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.risk-factors h5 {
    color: #00d4ff;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.risk-factors ul {
    list-style: none;
    padding: 0;
}

.risk-factors li {
    color: #e0e0e0;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    padding-left: 1.5rem;
}

.risk-factors li:before {
    content: '•';
    color: #00d4ff;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.risk-factors li:last-child {
    border-bottom: none;
}

.recommendation {
    background: rgba(20, 20, 20, 0.5);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.recommendation.accept {
    border-left: 4px solid #2ed573;
    background: rgba(46, 213, 115, 0.05);
}

.recommendation.reject {
    border-left: 4px solid #ff4757;
    background: rgba(255, 71, 87, 0.05);
}

.recommendation h5 {
    color: #00d4ff;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.recommendation p {
    color: #e0e0e0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.recommendation.accept p i {
    color: #2ed573;
}

.recommendation.reject p i {
    color: #ff4757;
}

.submission-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(20, 20, 20, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-item .label {
    color: #a0a0a0;
    font-weight: 500;
}

.detail-item .value {
    color: #ffffff;
    font-weight: 600;
}

.status-success {
    color: #2ed573 !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fraud-status {
    background: rgba(20, 20, 20, 0.5);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 1rem;
    text-align: center;
}

.fraud-status.flagged {
    border-left: 4px solid #ff4757;
    background: rgba(255, 71, 87, 0.05);
}

.fraud-status.clean {
    border-left: 4px solid #2ed573;
    background: rgba(46, 213, 115, 0.05);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.fraud-status.flagged .status-badge {
    background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(255, 71, 87, 0.3);
}

.fraud-status.clean .status-badge {
    background: linear-gradient(135deg, #2ed573 0%, #26d464 100%);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(46, 213, 115, 0.3);
}

.status-badge i {
    font-size: 1.2rem;
}

.status-description {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.status-flagged {
    color: #ff4757 !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.simple-result {
    display: flex;
    justify-content: center;
    padding: 1rem 0;
}

.status-display {
    text-align: center;
    padding: 1.5rem;
    border-radius: 15px;
    min-width: 180px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.status-display.flagged {
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.1) 0%, rgba(255, 55, 66, 0.05) 100%);
    border: 2px solid #ff4757;
}

.status-display.clean {
    background: linear-gradient(135deg, rgba(46, 213, 115, 0.1) 0%, rgba(38, 212, 100, 0.05) 100%);
    border: 2px solid #2ed573;
}

.status-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.status-display.flagged .status-icon {
    color: #ff4757;
}

.status-display.clean .status-icon {
    color: #2ed573;
}

.status-text {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.status-display.flagged .status-text {
    color: #ff4757;
}

.status-display.clean .status-text {
    color: #2ed573;
}

.status-description {
    color: #a0a0a0;
    font-size: 0.9rem;
    font-weight: 500;
}

.premium-result {
    padding: 1rem 0;
}

.premium-result .status-display {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 193, 7, 0.05) 100%);
    border: 2px solid #ffd700;
    margin-bottom: 1.5rem;
}

.premium-result .status-icon {
    color: #ffd700;
}

.premium-result .status-text {
    color: #ffd700;
}

.rewrite-details {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.rewrite-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.rewrite-stats .stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e0e0e0;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.rewrite-stats .stat i {
    color: #00d4ff;
}

.text-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.original-text, .rewritten-text {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1rem;
}

.original-text h4, .rewritten-text h4 {
    color: #00d4ff;
    margin: 0 0 0.75rem 0;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.original-text p, .rewritten-text p {
    color: #e0e0e0;
    margin: 0;
    line-height: 1.5;
    font-size: 0.9rem;
}

.rewritten-text {
    border-color: rgba(46, 213, 115, 0.2);
}

.rewritten-text h4 {
    color: #2ed573;
}

@media (max-width: 768px) {
    .text-comparison {
        grid-template-columns: 1fr;
    }
    
    .rewrite-stats {
        justify-content: center;
    }
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 2000;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: rgba(30, 30, 30, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0;
    max-width: 400px;
    width: 90%;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.show .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h3 {
    color: #ffd700;
    font-size: 1.2rem;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: #808080;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.modal-close:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.modal-body {
    padding: 1.5rem;
}

.modal-body p {
    color: #a0a0a0;
    margin-bottom: 1.5rem;
    text-align: center;
}

.modal-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #000;
    border: none;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    margin-top: 1.5rem;
}

.modal-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.modal-submit-btn.loading {
    pointer-events: none;
}

.modal-submit-btn.loading .btn-loading {
    display: block;
}

.modal-submit-btn.loading i:not(.btn-loading i) {
    display: none;
}

.login-error {
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid #ff4757;
    border-radius: 8px;
    padding: 0.75rem;
    margin-top: 1rem;
    color: #ff4757;
    font-size: 0.9rem;
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.login-error.show {
    display: flex;
}

.register-info {
    text-align: center;
    padding: 1rem 0;
}

.register-info h4 {
    color: #ffd700;
    margin: 1rem 0 0.5rem 0;
    font-size: 1.2rem;
}

.register-info p {
    color: #e0e0e0;
    line-height: 1.5;
    font-size: 1rem;
}

.register-info strong {
    color: #00d4ff;
    font-weight: 600;
}

.form-group.focused label {
    color: #00d4ff;
}

.form-group input.has-value,
.form-group textarea.has-value {
    border-color: rgba(0, 212, 255, 0.3);
}

::placeholder {
    color: #666;
    opacity: 1;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 212, 255, 0.5);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 212, 255, 0.7);
}
