* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #30709b;
    overflow: hidden;
}
.container {
    position: relative;
    text-align: center;
    color: #ffae42;
}

h2 {
    font-size: 24px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

#Criarbtn {
    padding: 15px 25px;
    width: 100%;
    background-color: #ff7a2c;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#Criarbtn:hover {
    background-color: #134668;
    transform: scale(1.05); /* Leve aumento no hover */
}


.login-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px outset #000000;
    border-radius: 10px;         
    padding: 30px;             
}

.login-box input {
    width: 250px;
    margin-bottom: 15px;
    padding: 10px;
    font-size: 16px;
    color: #ffae42;
    border: 2px solid #ffae42;
    border-radius: 25px;
    background-color: transparent;
    outline: none;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.login-box input::placeholder {
    color: #ffae42;
    opacity: 0.7;
}

.login-box input:focus {
    box-shadow: 0 0 10px rgba(255, 174, 66, 0.5);
}

.login-box button {
    width: 150px;
    padding: 10px;
    font-size: 16px;
    color: #ffae42;
    border: 2px solid #ffae42;
    border-radius: 25px;
    background-color: transparent;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.login-box button:hover {
    background-color: rgba(255, 174, 66, 0.2);
    transform: scale(1.05);
}

/* Animações dos elementos decorativos */
.decorative-elements .circle,
.decorative-elements .star {
    position: absolute;
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
}

.circle {
    background-color: #ffae42;
    border-radius: 50%;
}

.circle.big {
    width: 50px;
    height: 50px;
    bottom: 20%;
    right: 10%;
    animation-delay: 0s;
}

.circle.medium {
    width: 35px;
    height: 35px;
    top: 30%;
    left: 15%;
    animation-delay: 1s;
}

.circle.small {
    width: 20px;
    height: 20px;
    top: 10%;
    left: 25%;
    animation-delay: 2s;
}

.circle.extra-small {
    width: 15px;
    height: 15px;
    bottom: 10%;
    left: 30%;
    animation-delay: 3s;
}

.star {
    color: #ffae42;
}

.star.large::before {
    content: "★";
    font-size: 24px;
}

.star.large {
    top: 20%;
    right: 20%;
    animation-delay: 1s;
}

.star.medium::before {
    content: "★";
    font-size: 18px;
}

.star.medium {
    top: 40%;
    left: 30%;
    animation-delay: 2s;
}

.star.small::before {
    content: "★";
    font-size: 14px;
}

.star.small {
    bottom: 15%;
    right: 25%;
    animation-delay: 3s;
}

/* Keyframes para animação flutuante */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}