*{
    color: #165961;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background:
            url('../media/slider3.jpg') !important;
    background-blend-mode: overlay;
    background-size: contain;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.site-register {
    width: 620px;
    height: 620px;
    padding: 6rem 5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    box-shadow:
            0 25px 50px -12px rgba(0, 0, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.1),
            0 0 0 2px rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(0.5deg);
    }
}


@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.site-register h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 700;
    background: #0d2c0a;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group.d-flex {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.baton{
    background-color: white !important;
    color: #256116 !important;
    font-weight: bold !important;
}
.baton:hover{
    background-color: #5eb02d !important;
    color: white !important;
}

@media (max-width: 480px) {
    .site-register {
        width: 350px;
        height: 350px;
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    .site-register h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .form-control {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}