﻿
body {
    background-color: #f7f9fc;
    font-family: 'Lato', sans-serif;
    background: linear-gradient(135deg, #d6ecff, #d0f6e9);
}

.form-container {
    border-radius: 12px;
}

.logo-uploader {
    width: 100px;
    height: 100px;
    border: 2px dashed #a0aec0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px auto;
    cursor: pointer;
    transition: border-color 0.2s;
}

    .logo-uploader:hover {
        border-color: #3b82f6
    }

.logo-icon {
    font-size: 36px;
    color: #63b3ed;
}

.form-label {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.25rem;
    font-size: 14px;
}

.form-control {
    color: #2d3748;
    font-size: 14px;
    border-radius: 6px;
}

    .form-control:focus {
        outline: 1.5px solid #3b82f6;
    }

hr {
    border: 1px solid #aaaaaa;
}

.fs-5 {
    font-size: 16px !important;
}

.fs-6 {
    font-size: 14px !important;
}

.alert-timer-wrapper {
    position: relative;
    overflow: hidden;
}

.alert-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.7);
    width: 100%;
}

.timer-shrink {
    animation: shrinkLine 2s linear forwards;
}

@@keyframes shrinkLine {
    from {
        width: 100%;
    }

    to {
        width: 0%;
    }
}

.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease-out;
}
