:root {
    --dotnet-purple: #512bd4;
    --dotnet-dark: #1e1e1e;
    --dotnet-light-purple: #7c4dff;
    --dotnet-accent: #00d9ff;
    --mud-palette-surface: rgba(0, 0, 0, 0.3) !important;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--dotnet-dark) 0%, #2d1b69 100%);
    color: #fff;
    min-height: 100vh;
}

h1 {
    outline: none;
}

.code-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    z-index: 0;
    pointer-events: none;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(124, 77, 255, 0.5) 2px, rgba(124, 77, 255, 0.5) 3px), repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(124, 77, 255, 0.5) 2px, rgba(124, 77, 255, 0.5) 3px);
    background-size: 30px 30px;
}

.page-container {
    padding-top: 2rem;
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.page-header {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

    .page-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 40%, rgba(81, 43, 212, 0.3) 0%, transparent 50%);
        z-index: 0;
    }

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, var(--dotnet-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(81, 43, 212, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s;
    cursor: pointer;
}

    .info-card:hover {
        transform: translateY(-5px);
        border-color: var(--dotnet-purple);
        box-shadow: 0 10px 40px rgba(81, 43, 212, 0.4);
    }

.info-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

    .info-icon.purple {
        background: linear-gradient(135deg, var(--dotnet-purple), var(--dotnet-light-purple));
    }

    .info-icon.cyan {
        background: linear-gradient(135deg, #00d9ff, #0088cc);
    }

    .info-icon.green {
        background: linear-gradient(135deg, #2ecc71, #27ae60);
    }

.info-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dotnet-accent);
}

.info-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

.info-link {
    color: var(--dotnet-accent);
    text-decoration: none;
    transition: all 0.3s;
}

    .info-link:hover {
        color: #fff;
    }

/* Form Styles */
.form-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dotnet-accent);
}

.form-subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

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

.form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

    .form-label .required {
        color: #ff4757;
        margin-left: 5px;
    }

.form-control {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(81, 43, 212, 0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s;
}

    .form-control:focus {
        outline: none;
        border-color: var(--dotnet-purple);
        box-shadow: 0 0 0 3px rgba(81, 43, 212, 0.2);
        background: rgba(255, 255, 255, 0.08);
        color: #fff !important;
    }

    .form-control::placeholder {
        color: rgba(255, 255, 255, 0.4);
    }

select.form-control option {
    background: var(--dotnet-light-purple);
}

.checkbox-styled {
    width: 100%;
    padding: 16px 15px;
    border: 1px solid rgba(81, 43, 212, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

    .checkbox-styled:focus {
        border-color: var(--dotnet-purple);
        box-shadow: 0 0 0 3px rgba(81, 43, 212, 0.2);
    }

    .checkbox-styled input {
        margin: 0;
        width: 16px;
        height: 16px;
    }

textarea.form-control {
    resize: vertical;
    min-height: 150px;
    font-family: inherit;
}

.form-select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(81, 43, 212, 0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

    .form-select:focus {
        outline: none;
        border-color: var(--dotnet-purple);
        box-shadow: 0 0 0 3px rgba(81, 43, 212, 0.2);
    }

    .form-select option {
        background: var(--dotnet-dark);
        color: #fff;
    }

.form-check-input {
    background-color: rgba(81, 43, 212, 0.1);
    border: 2px solid rgba(0, 217, 255, 0.3);
}

    .form-check-input:checked {
        background-color: var(--dotnet-purple);
        border-color: var(--dotnet-accent);
    }

.form-check-label {
    color: rgba(255, 255, 255, 0.8);
}


/* Button Styles */

.btn {
    border-radius: 10px !important;
}

.btn-primary {
    background: linear-gradient(135deg,#512bd4,#7c4dff);
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 25px rgba(81,43,212,0.4);
    margin-right: 15px
}

.btn-secondary {
    border: 2px solid #00d9ff;
    background-color: transparent;
    color: #00d9ff;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    line-height: 1.2;
}

    .btn-primary:hover, .btn-secondary:hover {
        box-shadow: 0 10px 30px rgba(81, 43, 212, 0.5);
    }

    .btn-secondary:hover {
        box-shadow: 0 10px 30px rgba(81, 43, 212, 0.5);
        background-color: transparent;
        border: 2px solid #00d9ff;
    }

.btn-submit {
    background: linear-gradient(135deg, var(--dotnet-purple), var(--dotnet-light-purple));
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

    .btn-submit:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(81, 43, 212, 0.5);
    }

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

    .btn-submit.loading {
        opacity: 0.7;
        cursor: not-allowed;
    }

    .btn-submit.btn-auto-width {
        width: auto;
    }

.btn-outline-secondary{

}

.link-accent {
    color: var(--dotnet-accent);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

    .link-accent:hover {
        color: var(--dotnet-light-purple);
        text-decoration: underline;
    }

.text-muted-custom {
    color: rgba(255, 255, 255, 0.6);
}

.alert-custom {
    background: rgba(220, 53, 69, 0.1);
    border: 2px solid rgba(220, 53, 69, 0.5);
    border-radius: 10px;
    color: #ff6b6b;
    padding: 12px;
    margin-bottom: 20px;
}
/* Social Links */
.social-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(81, 43, 212, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
}

.social-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dotnet-accent);
}

.social-subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(81, 43, 212, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

    .social-btn:hover {
        background: var(--dotnet-purple);
        border-color: var(--dotnet-purple);
        transform: translateY(-8px) scale(1.1);
        box-shadow: 0 10px 30px rgba(81, 43, 212, 0.5);
        color: #fff;
    }

    .social-btn.linkedin:hover {
        background: #0077b5;
        border-color: #0077b5;
    }

    .social-btn.github:hover {
        background: #333;
        border-color: #333;
    }

    .social-btn.twitter:hover {
        background: #1da1f2;
        border-color: #1da1f2;
    }

    .social-btn.email:hover {
        background: #ea4335;
        border-color: #ea4335;
    }


.success-message {
    display: none;
    background: rgba(46, 204, 113, 0.2);
    border: 1px solid #2ecc71;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}

    .success-message.show {
        display: block;
        animation: fadeIn 0.3s ease;
    }

    .success-message i {
        font-size: 3rem;
        color: #2ecc71;
        margin-bottom: 10px;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {

    .page-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .social-links {
        gap: 15px;
    }

    .social-btn {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

.char-counter {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: right;
    margin-top: 5px;
}

    .char-counter.warning {
        color: #ffc107;
    }

    .char-counter.error {
        color: #ff4757;
    }

.search-bar {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(81, 43, 212, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 15px 25px;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
}

    .search-bar input {
        background: transparent;
        border: none;
        color: #fff;
        width: 100%;
        outline: none;
    }

        .search-bar input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }


.page-link {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(81, 43, 212, 0.3);
    color: #fff;
    margin: 0 5px;
    border-radius: 8px;
    transition: all 0.3s;
}

    .page-link:hover {
        background: var(--dotnet-purple);
        border-color: var(--dotnet-purple);
        color: #fff;
        transform: translateY(-3px);
    }

.page-item.active .page-link {
    background: var(--dotnet-purple);
    border-color: var(--dotnet-purple);
}

/* Animations */
.floating-element {
    position: fixed;
    font-size: 1.5rem;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

.element-1 {
    top: 10%;
    left: 5%;
    animation: float-left 8s ease-in-out infinite;
}

.element-2 {
    top: 20%;
    right: 10%;
    animation: float-right 10s ease-in-out infinite;
}

.element-3 {
    bottom: 15%;
    left: 10%;
    animation: float-left 12s ease-in-out infinite;
}

.element-4 {
    bottom: 10%;
    right: 5%;
    animation: float-right 9s ease-in-out infinite;
}

@@keyframes float-left {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }

    50% {
        transform: translateX(-30px) translateY(-30px);
    }
}

@@keyframes float-right {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }

    50% {
        transform: translateX(30px) translateY(-30px);
    }
}



.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 30px 0;
    color: rgba(255, 255, 255, 0.5);
}

    .divider::before,
    .divider::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid rgba(0, 217, 255, 0.3);
    }

    .divider span {
        padding: 0 15px;
    }

/* Login / Register */
.auth-container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.auth-card {
    background: rgba(30, 30, 30, 0.8);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 20px;
    padding: 50px;
    max-width: 500px;
    width: 100%;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(81, 43, 212, 0.4);
    animation: fadeInUp 0.8s ease;
}

@@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-icon {
    font-size: 4rem;
    color: var(--dotnet-accent);
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

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

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.auth-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--dotnet-accent) 0%, var(--dotnet-light-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-size: 1rem;
}

/* Tabs */
.mud-tabs .mud-tabs-tabbar {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(81, 43, 212, 0.3);
    border-radius: 15px;
    padding: 10px;
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
}

.mud-tooltip-root{
    margin-right:10px;
}

.mud-tab-slider{
    display:none;
}

.mud-tabs .mud-tab {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 10px;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
    padding-right: 10px;
}

.mud-tabs .mud-tab-active {
    background: linear-gradient(135deg, var(--dotnet-purple), var(--dotnet-light-purple));
    border-color: var(--dotnet-purple);
    color: #fff;
    box-shadow: 0 5px 20px rgba(81, 43, 212, 0.3);
}