* {
    box-sizing: border-box;
}

html, body {
    margin: 0 !important;
    padding: 0 !important;
    height: 100% !important;
}

body {
    background-color: #1A1A1A !important;
    color: #E5E5E5 !important;
    font-family: 'Roboto', sans-serif !important;
}

nav {
    margin: 0 !important;
    width: 100% !important;
}

.content-wrapper {
    width: 100%;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.login-container {
    background-color: #2E2E2E;
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    max-width: 500px;
    width: 100%;
}

.logo-text {
    font-family: 'Pirata One', cursive;
    font-size: 2.5rem;
    color: #C4975E;
    text-align: center;
    margin-bottom: 1.5rem;
}

h2 {
    font-family: 'Pirata One', cursive;
    color: #C4975E;
}

.form-label {
    color: #E5E5E5;
}

.form-control {
    background-color: #1A1A1A;
    border: 1px solid #C4975E;
    color: #E5E5E5;
}

.form-control:focus {
    background-color: #1A1A1A;
    border-color: #C4975E;
    color: #E5E5E5;
    box-shadow: 0 0 0 0.25rem rgba(196, 151, 94, 0.25);
}

.form-control::placeholder {
    color: #BFBFBF;
}

.btn-primary {
    background-color: #C4975E;
    border: none;
    color: #1A1A1A;
    font-weight: 700;
}

.btn-primary:hover {
    background-color: #8B1E1E;
    color: #E5E5E5;
}

.text-link {
    color: #C4975E;
}

.text-link:hover {
    color: #E5E5E5;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
    color: #BFBFBF;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #C4975E;
}

.divider::before {
    margin-right: 1rem;
}

.divider::after {
    margin-left: 1rem;
}

.alert-danger {
    background-color: #8B1E1E;
    color: #E5E5E5;
}