* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #5f2eea, #7b61ff);
    min-height: 100vh;
}

.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-card {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h1 {
    margin: 0 0 10px;
    color: #222;
    font-size: 28px;
}

.auth-header p {
    margin: 0;
    color: #666;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
}

.form-group input:focus {
    outline: none;
    border-color: #7b61ff;
    box-shadow: 0 0 0 3px rgba(123, 97, 255, 0.2);
}

.auth-button {
    width: 100%;
    padding: 14px;
    background: #7b61ff;
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

.auth-button:hover {
    background: #5f2eea;
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
}

.auth-footer p {
    margin: 8px 0;
}

.auth-footer a {
    color: #5f2eea;
    text-decoration: none;
    font-weight: bold;
}

.auth-footer a:hover {
    text-decoration: underline;
}


.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px;
}

.logo img {
    width: 260px;
    max-width: 220%;
    height: auto;
    display: block;
    object-fit: contain;
}


.auth-card{
    animation: fadeIn .6s ease;
}

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(25px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}



.password-wrapper {
    position: relative;
    width: 100%;
}

.password-wrapper input {
    width: 100%;
    padding-right: 55px;
}

.password-toggle {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 18px;
    padding: 0;
    width: 28px;
    height: 28px;
}



.error-message{
    background:#ffe5e5;
    color:#b00020;
    padding:12px;
    border-radius:10px;
    margin-bottom:20px;
    text-align:center;
    border:1px solid #ffb3b3;
}



.dashboard-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #5f2eea, #7b61ff);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.dashboard-card {
    width: 100%;
    max-width: 900px;
    background: #ffffff;
    border-radius: 22px;
    padding: 45px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.dashboard-header {
    text-align: center;
    margin-bottom: 35px;
}

.dashboard-header h1 {
    font-size: 32px;
    margin: 0 0 10px;
    color: #111;
}

.dashboard-header p {
    margin: 0;
    color: #666;
    font-size: 18px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-bottom: 35px;
}

.dashboard-box {
    background: #f8f6ff;
    border: 1px solid #e6ddff;
    border-radius: 18px;
    padding: 28px;
    text-align: center;
    transition: 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.dashboard-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(95, 46, 234, 0.18);
    border-color: #7b61ff;
}

.dashboard-box .icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.dashboard-box h3 {
    margin: 0 0 8px;
    font-size: 22px;
    color: #111;
}

.dashboard-box p {
    margin: 0;
    color: #666;
    font-size: 15px;
}

@media (max-width: 700px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-card {
        padding: 30px 22px;
    }

    .dashboard-header h1 {
        font-size: 26px;
    }
}


/* ===== Dashboard Layout ===== */

.dashboard-body{
    margin:0;
    display:flex;
    min-height:100vh;
    background:#f5f6fb;
    font-family:Arial, Helvetica, sans-serif;
}

.sidebar{
    width:260px;
    background:#2d1b69;
    color:white;
    display:flex;
    flex-direction:column;
    padding:30px 20px;
    box-shadow:5px 0 25px rgba(0,0,0,.15);
}

.sidebar-logo{
    text-align:center;
    margin-bottom:40px;
}

.sidebar-logo img{
    width:130px;
}

.sidebar nav{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.sidebar nav a{
    color:white;
    text-decoration:none;
    padding:14px 18px;
    border-radius:12px;
    transition:.3s;
    font-size:17px;
}

.sidebar nav a:hover{
    background:rgba(255,255,255,.12);
    transform:translateX(5px);
}

.logout-link{
    margin-top:auto;
    color:white;
    text-decoration:none;
    padding:14px 18px;
    border-radius:12px;
    transition:.3s;
}

.logout-link:hover{
    background:#b00020;
}

.main-content{
    flex:1;
    padding:50px;
}


.sidebar a.active{
    background:#6b46c1;
    color:white;
    font-weight:600;
    border-radius:12px;
}

.sidebar a.active:hover{
    background:#5a36aa;
}


.sidebar-version{

    margin-top:auto;

    padding-top:30px;

    text-align:center;

    color:#b8a9e0;

}

.sidebar-version hr{

    border:none;

    border-top:1px solid rgba(255,255,255,.15);

    margin-bottom:18px;

}

.sidebar-version p{

    margin:0;

    font-size:13px;

    font-weight:600;

    color:#ffffff;

}

.sidebar-version small{

    color:#b8a9e0;

    font-size:12px;

}


/* ===== Coming Soon Premium ===== */

/* ===== Coming Soon Premium ===== */

.coming-container {
    min-height: calc(100vh - 100px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.coming-logo {
    width: 190px;
    height: auto;
    margin-bottom: 50px;
}

.coming-card {
    width: 100%;
    max-width: 680px;
    background: #ffffff;
    border-radius: 28px;
    padding: 55px 65px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(45, 27, 105, 0.14);
}

.coming-card h1 {
    margin: 0;
    font-size: 42px;
    color: #2d1b69;
    letter-spacing: -0.5px;
}

.coming-divider {
    width: 90px;
    height: 3px;
    background: #c8a24a;
    border-radius: 50px;
    margin: 26px auto;
}

.coming-card p {
    margin: 0;
    color: #5f5f6b;
    font-size: 18px;
    line-height: 1.7;
}

.coming-quote {
    margin-top: 28px !important;
    font-weight: 700;
    color: #2d1b69 !important;
}

/* ===== Coming Soon Premium ===== ende*/


/* ===========================
   PROFILE PREMIUM
=========================== */

.profile-premium{
    min-height:calc(100vh - 80px);
    display:flex;
    justify-content:center;
    align-items:center;
    padding:50px;
}

.profile-card-premium{
    width:100%;
    max-width:620px;
    background:#ffffff;
    border-radius:26px;
    padding:55px;
    text-align:center;
    border:1px solid #ece7f8;
    box-shadow:0 25px 60px rgba(45,27,105,.12);
}

.profile-avatar-premium{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#f3efff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
}

.profile-card-premium h1{
    margin:0;
    font-size:34px;
    color:#2d1b69;
}

.profile-subtitle{
    margin:12px 0 35px;
    color:#666;
    font-size:17px;
}

.profile-details{
    display:grid;
    gap:18px;
    margin-bottom:35px;
}

.profile-detail{
    background:#f8f6ff;
    border:1px solid #e6ddff;
    border-radius:16px;
    padding:18px 22px;
    display:flex;
    justify-content:space-between;
    gap:20px;
}

.profile-detail span{
    color:#777;
}

.profile-detail strong{
    color:#2d1b69;
}

.profile-edit-button{
    width:100%;
    border:none;
    border-radius:14px;
    padding:16px;
    background:#7b61ff;
    color:white;
    font-size:17px;
    cursor:pointer;
}

/* ===========================
   PROFILE PREMIUM  Ende
=========================== */