body {
    background-color: #ffffff;
    font-family: "Nunito", sans-serif;
}

.container {
    height: 100%;
    width: 100%;
}

.title {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -1px;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 30px;
    color: #02005c;
}

.title::before {
    width: 18px;
    height: 18px;
}

.title::after {
    width: 18px;
    height: 18px;
    animation: pulse 1s linear infinite;
}

.title::before,
.title::after {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    border-radius: 50%;
    left: 0px;
    background-color: #ffffff;
}

@keyframes pulse {
    from {
        transform: scale(0.9);
        opacity: 1;
    }

    to {
        transform: scale(1.8);
        opacity: 0;
    }
}

.form {
    background-color: #828282;
    border-radius: 15px;
    padding: 30px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.input-field {
    background: none;
    border: none;
    outline: none;
    color: #ffffff;
    width: 100%;
}

.input-group input {
    transition: all 0.3s ease;
}

.input-group input:focus {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.5);
}

.button3 {
    background-color: #e6e6e6;
    border: none;
    color: blue;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1em;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.button3:hover {
    background-color: #bcbcbc;
}

.button3:active {
    background-color: #bcbcbc;
}

.button3::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.button3:hover::before {
    left: 100%;
    top: 100%;
}


#profilePicPreview {
    transition: all 0.3s ease;
}

#profilePicPreview:hover {
    transform: scale(1.1) rotate(3deg);
}
.logo-3d {
    animation: rotate3d 5s infinite linear;
}

@keyframes rotate3d {
    0% { transform: rotate3d(0, 1, 0, 0deg); }
    100% { transform: rotate3d(0, 1, 0, 360deg); }
}



@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}