﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f7f4ed;
    color: #24362e;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: white;
    border-bottom: 1px solid #e5e5e5;
}

.header-container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    text-decoration: none;
    font-size: 28px;
    font-weight: bold;
    color: #24362e;
}

.header-actions {
    display: flex;
    gap: 10px;
}

.header-button {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 10px;
    text-decoration: none;
    background: #7b8c54;
    color: white;
    font-weight: 600;
    transition: .2s;
}

.header-button:hover {
    background: #687744;
}

.header-button.logout {
    background: #d9534f;
}

.header-button.logout:hover {
    background: #c9302c;
}

.main-content {
    flex: 1;
    padding: 60px 0;
}

.footer {
    background: white;
    border-top: 1px solid #e5e5e5;
}

    .footer .container {
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.footer-text {
    color: #666;
    font-size: 14px;
}
.login-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 60px;
    align-items: center;
}

.login-intro h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #24362e;
}

.login-intro p {
    font-size: 20px;
    line-height: 1.7;
}

.login-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,.08);
}

.login-tabs {
    display: flex;
    margin-bottom: 30px;
    background: #f2f2f2;
    border-radius: 50px;
    padding: 4px;
}

.tab {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px;
    cursor: pointer;
    border-radius: 50px;
}

    .tab.active {
        background: #24362e;
        color: white;
    }

.tab-content {
    display: none;
}

    .tab-content.active {
        display: block;
    }

    .tab-content h2 {
        margin-bottom: 25px;
    }

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
    }

    .form-group input {
        width: 100%;
        padding: 14px;
        border: 1px solid #dcdcdc;
        border-radius: 10px;
        font-size: 16px;
    }

.btn-primary {
    width: 100%;
    background: #24362e;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 15px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}

    .btn-primary:hover {
        background: #30463c;
    }

@media(max-width:900px) {

    .login-container {
        grid-template-columns: 1fr;
    }
}
.alert {
    padding: 14px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.alert-error {
    background: #fdecec;
    color: #9b1c1c;
}

.alert-success {
    background: #edf7ed;
    color: #256029;
}
.verify-container {
    max-width: 500px;
    margin: 0 auto;
}

.verify-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,.08);
}

    .verify-card h1 {
        margin-bottom: 20px;
        color: #24362e;
    }

.verify-text {
    margin-bottom: 30px;
    line-height: 1.6;
    color: #666;
}

.verify-footer {
    margin-top: 25px;
    text-align: center;
}

.verify-footer p {
    margin-bottom: 10px;
    color: #666;
}

.verify-footer a {
    color: #24362e;
    font-weight: 600;
    text-decoration: none;
}

.verify-footer a:hover {
    text-decoration: underline;
}
.dashboard-container {
    max-width: 1100px;
    margin: 0 auto;
}

.dashboard-header {
    margin-bottom: 35px;
}

    .dashboard-header h1 {
        font-size: 42px;
        margin-bottom: 12px;
        color: #24362e;
    }

    .dashboard-header p {
        font-size: 18px;
        color: #666;
    }

.dashboard-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 25px;
}

.dashboard-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,.08);
}

.dashboard-card-large {
    grid-row: span 2;
}

.dashboard-card h2 {
    margin-bottom: 25px;
    color: #24362e;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

    .data-table th {
        text-align: left;
        padding-bottom: 12px;
        border-bottom: 1px solid #e5e5e5;
        color: #666;
    }

    .data-table td {
        padding: 14px 0;
        border-bottom: 1px solid #eeeeee;
    }

.attest-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.attest-item {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
    padding: 16px;
    border: 1px solid #eeeeee;
    border-radius: 14px;
    background: #fafafa;
}

    .attest-item span {
        display: block;
        margin-top: 4px;
        color: #777;
        font-size: 14px;
    }

.btn-download {
    text-decoration: none;
    background: #7b8c54;
    color: white;
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 600;
    white-space: nowrap;
}

    .btn-download:hover {
        background: #687744;
    }

@media(max-width: 900px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-card-large {
        grid-row: auto;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}
select {
    width: 100%;
    padding: 14px;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    font-size: 16px;
    background: white;
}
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
}

.dashboard-actions {
    display: flex;
    gap: 12px;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 10px;
    text-decoration: none;
    background: #7b8c54;
    color: white;
    font-weight: 600;
}

    .btn-secondary:hover {
        background: #687744;
    }

.btn-danger {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 10px;
    text-decoration: none;
    background: #d9534f;
    color: white;
    font-weight: 600;
}

.btn-danger:hover {
    background: #c9302c;
}
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

    .dashboard-header > div:first-child {
        flex: 1;
    }

.dashboard-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}
.dashboard-actions-top {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-bottom: 20px;
}
