body {
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.form-container {
    background: white;
    max-width: 700px;
    margin: 50px auto;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.form-control {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #ff0d05;
    box-shadow: 0 0 8px rgba(255, 13, 5, 0.5);
}

.btn-primary {
    background-color: #ff0d05;
    border: none;
    padding: 10px;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #cc0b04;
}

.btn-primary:disabled {
    background-color: #ff0d05 !important;
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-attach-primary {
    background-color: #000000;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-attach-primary:hover {
    background-color: #333333;
    color: white;
}

.btn-attach-primary:disabled {
    background-color: #000000 !important;
    color: white;
    opacity: 0.7;
    cursor: not-allowed;
}

.alert {
    border-radius: 10px;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #003246;
    padding: 10px 15px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-item .nav-link:hover {
    color: #ff0d05;
}

.navbar-nav .nav-item .nav-link::after {
    content: "";
    display: block;
    width: 0;
    height: 3px;
    background: #ff0d05;
    transition: width 0.3s ease;
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
}

.navbar-nav .nav-item .nav-link:hover::after {
    width: 100%;
}

.navbar-nav .nav-item .active {
    color: #ff0d05;
}

.navbar-nav .nav-item .active::after {
    width: 100%;
}

.navbar {
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    position: relative;
    z-index: 1000;
}

.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-left: 20px;
}

.social-icons a {
    color: #565656;
    font-size: 1.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
    color: #ff1105;
}

.footer {
    background: #1D1D1D;
    color: white;
    padding: 25px 0;
    text-align: center;
}

.footer .container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    flex-wrap: wrap;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo img {
    max-height: 80px;
    display: block;
}

.footer-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: #cccccc;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff0d05;
}

.footer .social-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer .social-icons a {
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
    text-decoration: none;
}

.footer .social-icons a:hover {
    transform: scale(1.2);
    color: #ff0d05;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: #cccccc;
    margin: 0;
    padding-top: 5px;
    display: flex;
    align-items: center;
}

.donor-logo img {
    max-width: 200px;
    height: auto;
}

.auto-expand {
    resize: none;
    overflow: hidden;
    line-height: 1.5;
    transition: height 0.2s ease;
}


/*.form-label {*/
/*    font-weight: 500;*/
/*    font-size: 1rem;*/
/*    color: #333333;*/
/*    margin-bottom: 6px;*/
/*}*/


.form-label {
    font-weight: 600;
    font-size: 1.05rem;
    color: #222222;
    letter-spacing: 0.3px;
    margin-bottom: 8px;
    display: block;
    position: relative;
    padding-left: 10px;
    border-left: 4px solid #ff0d05;
    background: linear-gradient(90deg, #fff 0%, #f9f9f9 100%);
    border-radius: 4px;
}

.form-label:hover {
    color: #ff0d05;
    background-color: #f1f1f1;
}

.draft-hidden {
    display: none !important;
}
