html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.logo-img {
    height: 50px;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    margin-bottom: 60px;
}


.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: transform 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
}

.card-header {
    background-color: transparent;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 1.5rem;
}

.card-body {
    padding: 2rem;
}


.form-control {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
}

.form-control:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.btn-lg {
    border-radius: 8px;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}


.checkmark-circle {
    width: 80px;
    height: 80px;
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 20px auto;
}

.checkmark-circle .background {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #28a745;
    position: absolute;
}

.checkmark-circle .checkmark {
    border-radius: 5px;
}

.checkmark-circle .checkmark.draw:after {
    animation-delay: 100ms;
    animation-duration: 1s;
    animation-timing-function: ease;
    animation-name: checkmark;
    transform: scaleX(-1) rotate(135deg);
    animation-fill-mode: forwards;
}

.checkmark-circle .checkmark:after {
    opacity: 1;
    height: 40px;
    width: 20px;
    transform-origin: left top;
    border-right: 4px solid white;
    border-top: 4px solid white;
    content: '';
    left: 22px;
    top: 40px;
    position: absolute;
}

@keyframes checkmark {
    0% {
        height: 0;
        width: 0;
        opacity: 1;
    }
    20% {
        height: 0;
        width: 20px;
        opacity: 1;
    }
    40% {
        height: 40px;
        width: 20px;
        opacity: 1;
    }
    100% {
        height: 40px;
        width: 20px;
        opacity: 1;
    }
}


.crossmark-circle {
    width: 80px;
    height: 80px;
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 20px auto;
}

.crossmark-circle .background {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #dc3545;
    position: absolute;
}

.crossmark-circle .crossmark {
    border-radius: 5px;
}

.crossmark-circle .crossmark:after {
    content: '';
    height: 40px;
    width: 4px;
    background: white;
    display: block;
    position: absolute;
    top: 20px;
    left: 38px;
    transform: rotate(45deg);
    animation: crossmark-1 0.3s ease forwards;
}

.crossmark-circle .crossmark:before {
    content: '';
    height: 40px;
    width: 4px;
    background: white;
    display: block;
    position: absolute;
    top: 20px;
    left: 38px;
    transform: rotate(-45deg);
    animation: crossmark-2 0.3s ease forwards;
    animation-delay: 0.1s;
    opacity: 0;
}

@keyframes crossmark-1 {
    0% { height: 0; }
    100% { height: 40px; }
}

@keyframes crossmark-2 {
    0% { height: 0; opacity: 1; }
    100% { height: 40px; opacity: 1; }
}


.navbar {
    background-color: white !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.footer {
    background-color: white;
    border-top: 1px solid #eee;
    padding: 20px 0;
    font-size: 0.9rem;
}

@media (max-width: 575.98px) {
    .card-header {
        padding: 1rem 1.25rem;
    }

    .card-body {
        padding: 1.25rem;
    }
}
