﻿:root {
    --bs-primary: hsl(45, 96%, 64%);
}

body {
    height: 100vh;
    background-color: #000;
}

.card {
    min-width: 400px;
}

.btn-primary {
    --bs-btn-color: #000;
    --bs-btn-bg: hsl(45, 96%, 64%);
    --bs-btn-border-color: hsl(45, 96%, 64%);
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: hsl(45, 96%, 54%);
    --bs-btn-hover-border-color: hsl(45, 96%, 54%);
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: hsl(45, 96%, 44%);
    --bs-btn-active-border-color: hsl(45, 96%, 44%);
    --bs-btn-disabled-bg: hsl(45, 96%, 64%);
    --bs-btn-disabled-border-color: hsl(45, 96%, 64%);
}

.logo-ironbug {
    position: absolute;
    bottom: 16%;
    left: 50%;
    max-width: 150px;
    transform: translateX(-50%) translateY(-50%);
    mix-blend-mode: screen;
    filter: contrast(0) brightness(10);
}

/* tela de exclusão de conta */
.codigo-container .codigo {
    width: 50px;
    height: 60px;
    font-size: 32px;
    text-align: center;
    font-weight: bold;
    border: 2px solid #ccc;
    border-radius: 8px;
}

.codigo:focus {
    border-color: #dc3545;
    outline: none;
    box-shadow: 0 0 5px rgba(220, 53, 69, .4);
}

input.codigo::-webkit-inner-spin-button,
input.codigo::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input.codigo[type=number] {
    -moz-appearance: textfield;
}