@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&display=swap');

body {
    background: url("https://i1-e.pinimg.com/1200x/ac/d9/68/acd968e9cc4e9f43e1de5404ea29f5f0.jpg") no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    padding-top: 70px;
    flex-direction: column;
    overflow-y: auto;
}


.main-content {
    flex: 1 0 auto; 
}

footer {
    flex-shrink: 0;
}

.sidebar {
    width: 250px;
    height: 100vh;
    background-color: rgba(33, 26, 29, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    padding: 20px;
    position: fixed;
    top: 0;
    left: 0;
    box-sizing: border-box;
    z-index: 100;
    padding-top: 100px;
}

.sidebar h2, .sidebar a {
    color: white;
    text-decoration: none;
}

.sidebar a {
    display: block;
    padding: 12px 10px;
    margin: 8px 0;
    border-radius: 5px;
    transition: background 0.2s;
}

.sidebar a:hover {
    background-color: #6320EE;
}


.main {
    margin-left: 250px;
    padding: 40px;
    width: calc(100% - 250px);
    box-sizing: border-box;
    height: 100vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.glass-card {
    background: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    color: #211A1D;
    padding: 25px;
    margin-bottom: 20px;
}


.footer-credits {
    background: rgba(33, 26, 29, 0.85);
    backdrop-filter: blur(8px);
    color: #f1f1f1;
    border-radius: 10px;
    padding: 12px;
    font-size: 13px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.footer-credits a {
    color: #6320EE;
    text-decoration: none;
}

.footer-credits a:hover {
    text-decoration: underline;
}


.login-glass {
    width: 350px;
    padding: 35px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    text-align: center;
    color: #211A1D;
}


.login-glass h2, .sidebar h2, .main h2, h3, h5 {
    font-family: 'Bodoni Moda', serif;
    font-weight: 700;
}


.login-glass input {
    border-radius: 20px;
    padding: 10px 15px;
    border: 1px solid #ccc;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 15px;
}


.position-relative {
    position: relative;
}

.toggle-eye {
    position: absolute;
    right: 15px;
    top: 12px;
    cursor: pointer;
    color: #555;
    font-size: 18px;
    z-index: 10;
}


.btn-primary {
    background-color: #cad5ca !important;
    border: none !important;
    border-radius: 20px !important;
    padding: 10px 25px !important;
    color: rgb(0, 0, 0) !important;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: #4b14b8 !important;
}

.btn-cancel {
    background-color: #e0e0e0;
    border: none;
    border-radius: 20px;
    padding: 10px 25px;
    color: #333;
    cursor: pointer;
    margin-left: 10px;
    font-weight: bold;
}