﻿/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    margin-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

/* Set widths on the form inputs since otherwise they're 100% wide */
input,
select,
textarea {
    max-width: 280px;
}

:root {
    --cg-primary: #0d6efd; /* Bootstrap primary */
    --cg-dark: #0b2c5f;
}

.brand-text {
    color: var(--cg-dark);
    letter-spacing: .3px;
}

.hero {
    background: linear-gradient(180deg,#f8fbff, #ffffff);
    padding: 64px 0 48px;
}

    .hero h1 {
        font-weight: 800;
        color: var(--cg-dark);
    }

    .hero .lead {
        color: #4b5563
    }

.card-ghost:hover {
    transform: translateY(-2px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.08);
}


/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
    .body-content {
        padding: 0;
    }
}
/* Basit, modern dokunuşlar */
body {
    background-color: #f8fafc;
}

.logo {
    height: 28px;
}

.card-ghost {
    background: #ffffff;
    border-radius: 14px;
}

    .card-ghost .card-body {
        padding: 1.25rem 1.25rem;
    }

.hero h1 {
    font-weight: 700;
    line-height: 1.2;
}

.hero .lead {
    color: #334155;
}

.form-label {
    font-weight: 600;
}

input.form-control, select.form-select, textarea.form-control {
    border-radius: 10px;
}

/* Mobil küçük iyileştirmeler */
@media (max-width: 575.98px) {
    .navbar-brand span {
        display: none;
    }
    /* logonun yanındaki yazıyı gizle */
    .container {
        padding-left: 14px;
        padding-right: 14px;
    }
}

/* Button’lara min dokunuş */
.btn {
    border-radius: 10px;
}

/* Mesaj renkleri */
.text-danger {
    color: #dc2626 !important;
}

.text-success {
    color: #16a34a !important;
}

.text-warning {
    color: #ca8a04 !important;
}
