/* ===================================
   DungeonXplorer - Bootstrap Custom Colors
   =================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Pirata+One&family=Roboto:wght@400;700&display=swap');

/* ===================================
   Styles de base
   =================================== */
body {
    background-color: #1A1A1A !important;
    color: #E5E5E5 !important;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
}

header{
    margin-bottom: 2rem;
    text-align: center;
    background-color: #2E2E2E;
}

h1 {
    font-family: 'Pirata One', cursive;
    color: #C4975E !important;
    -webkit-text-stroke: 1px black;
}

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

p{
    color: #E5E5E5 !important;
    font-family: 'Roboto', sans-serif;
}

.main-container {
    background-color: #2E2E2E;
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    width: 1024px;
    height: 100vh;
    margin: auto;
}

.form-label {
    color: #E5E5E5;
    font-weight: 500;
}

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

.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;
    font-size: 1.25rem;  
    border: none;
    color: #1A1A1A;
    font-weight: 700;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-right: 5rem;
    padding-left: 0.3rem;
    margin-top: 25px;
    border-radius: 5px;
    transition: all 0.3s;
    
}

.btn-primary:hover {
    background-color: #8B1E1E;
    color: #E5E5E5;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 151, 94, 0.3);
}

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

.alert-success {
    background-color: #4A7A66;
    border-color: #4A7A66;
    color: #E5E5E5;
}

.text-link {
    color: #C4975E;
    text-decoration: none;
    transition: all 0.3s;
}

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

.input-group-text {
    background-color: #1A1A1A;
    border: 1px solid #C4975E;
    color: #C4975E;
}

.logo-text {
    font-family: 'Pirata One', cursive;
    font-size: 2.5rem;
    color: #C4975E;
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}