html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap" rel="stylesheet" >

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

@keyframes fall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .form-container {
        width: 100%;
        padding: 10px;
    }

    .form-control {
        font-size: 14px;
    }
}



/* Project Card */
.project-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    margin: 40px auto;
    max-width: 880px;
    transition: background-color 0.3s ease;
}

/* DARK MODE */

body.dark-theme .sidebar {
    background-color: #0C120F !important;
    color: #f1f1f1 !important;
}

body.dark-theme .navbar {
    background-color: #0C120F !important;
    /* background-color: #2C3E50 !important;  */
}

body.dark-theme .project-card {
    background-color: #0C120F !important;
    color: #f1f1f1 !important;
}

body.dark-theme .form-card {
    background-color: #0C120F !important;
    color: #f1f1f1 !important;
}

body.dark-theme .nav-link {
    color: #f5f5f5 !important;
}

    body.dark-theme .nav-link:hover {
        background-color: #34495e !important;
        color: #65ff65 !important;
    }

body.dark-theme .btn {
    color: #f5f5f5;
    border-color: #888;
}

body.dark-theme .btn-outline-dark {
    border-color: #65ff65;
    color: #65ff65;
}

    body.dark-theme .btn-outline-dark:hover {
        background-color: #65ff65;
        color: #121212;
    }

body.dark-theme .nav-link,
body.dark-theme .nav-link i,
body.dark-theme .nav-link::before {
    color: #f1f1f1 !important;
}

body.dark-theme .logout-icon {
    background-color: #34495e;
    color: #fff;
    border: none;
}

    body.dark-theme .logout-icon:hover {
        background-color: #3c5a72;
        color: #65ff65;
    }


body.dark-theme .nav-link:hover {
    background-color: #1a252f !important;
    color: #65ff65 !important;
}


.form-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 16px;
    max-width: 600px;
    margin: 60px auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

    .form-card h2 {
        text-align: center;
        font-weight: 700;
        font-size: 26px;
        color: #2e7d32;
        margin-bottom: 30px;
        font-family: 'Segoe UI', sans-serif;
    }

    .form-card .form-group {
        margin-bottom: 24px;
    }

    .form-card label {
        display: block;
        font-weight: 600;
        margin-bottom: 8px;
        color: #333;
    }

    .form-card input.form-control {
        border-radius: 10px;
        border: 1px solid #ccc;
        padding: 12px 16px;
        font-size: 16px;
        background-color: #f9f9f9;
        transition: border-color 0.3s, box-shadow 0.3s;
    }

        .form-card input.form-control:focus {
            border-color: #198754;
            background-color: #fff;
            box-shadow: 0 0 0 4px rgba(25, 135, 84, 0.15);
            outline: none;
        }

    .form-card .btn-success {
        padding: 12px 24px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 10px;
        width: 100%;
        transition: background-color 0.3s ease;
    }

        .form-card .btn-success:hover {
            background-color: #157347;
        }



.section-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 30px 0;
}

    .section-divider::before,
    .section-divider::after {
        content: '';
        flex: 1;
        border-bottom: 2px solid #4CAF50; /* yeşil renk */
    }

    .section-divider:not(:empty)::before {
        margin-right: .75em;
    }

    .section-divider:not(:empty)::after {
        margin-left: .75em;
    }

    .section-divider span {
        font-family: 'Montserrat', sans-serif;
        font-size: 24px;
        color: #4CAF50;
        font-weight: 600;
        text-transform: uppercase;
    }
