﻿body {
    background-color: #333333;
}

/* Custom styles for black button, checkbox, and text selection */
.btn-black {
    background-color: #000000;
    border-color: #000000;
    color: white;
}

.btn-black:hover {
    background-color: #333333;
    border-color: #333333;
    color: white;
}

.btn-black:focus,
.btn-black:active {
    background-color: #000000 !important;
    border-color: #000000 !important;
    box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.25) !important;
}

.form-check-input:checked {
    background-color: #000000;
    border-color: #000000;
}

.form-check-input:focus {
    border-color: #000000;
    box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.25);
}

.form-control:focus {
    border-color: #000000;
    box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.25);
}

/* Text selection color */
::selection {
    background-color: #000000;
    color: white;
}

::-moz-selection {
    background-color: #000000;
    color: white;
}

/* Custom container and spacing styles */
.login-container {
    width: 500px !important;
    max-width: 750px !important;
    margin: 0 auto;
}

.card {
    width: 100%;
    padding: 2rem;
}

.card-body {
    padding: 2rem;
}

.input-group {
    margin-bottom: 1rem;
}

.form-control {
    padding: 0.75rem;
}

.input-group-text {
    padding: 0.75rem 1.25rem;
}

.btn {
    padding: 0.75rem;
    margin-top: 1rem;
}

.form-check {
    margin: 1.5rem 0;
}

/* Validation message styling */
.text-danger {
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}


body {
    background-image: url('../img/game/misc/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
}

.login-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    min-height: 100vh;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.login-content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
}

.card {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
}
