* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #454545;
}

#bee {
    font-size: 40px;
    font-family: sans-serif;
    font-weight: 900;
    text-align: center;
    color: #fff;
}

#bee:hover {
    color: black;
    transition: .5s ease-in-out;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10%;
}

img {
    height: 200px;
    width: 200px;
    border-radius: 50%;
}

button {
    height: 50px;
    width: 100px;
    font-size: 20px;
    font-family: sans-serif;
    color: white;
    background-color: black;
    border: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 100px;
    transform: translate(-50%, -50%);
    border-radius: 10px;
}

button:hover {
    background-color: white;
    color: black;
    transition: .5s ease-in-out;
    font-weight: 900;
}

.forms {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.form-container {
    width: 350px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    transform: translate(-50%, -50%);
    animation: slide-up 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
    display: none;
}

@keyframes slide-up {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.form-group button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.form-group button:hover {
    background-color: #0056b3;
}

#p {
    font-size: 20px;
    font-family: sans-serif;
    font-weight: 100;
    color: #140303;
    text-align: center;
    margin-top: 20px;
}