.background {
    width: 430px;
    height: 520px;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
}

.background .shape {
    height: 200px;
    width: 200px;
    position: absolute;
    border-radius: 50%;
}

.shape:first-child {
    background: linear-gradient(#274a7353, #274a73);
    left: -80px;
    top: -80px;
}

.shape:last-child {
    background: linear-gradient(to right, #69696928, #696969);
    right: -30px;
    bottom: -80px;
}

.logo {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    max-width: 200px; /* Adjust logo size */
    height: auto;
    border-radius: 10px; /* Optional: Add rounded corners if desired */
    opacity: 0.5;
}

form {
    height: 520px;
    width: 400px;
    background-color: rgba(0, 0, 0, 0.03);
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    z-index: 2;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
    padding: 50px 35px;
}

form * {
    font-family: inherit;
    letter-spacing: inherit;
    outline: none;
    border: none;
}

form h3 {
    font-size: 32px;
    font-weight: 500;
    line-height: 42px;
    text-align: center;
}

label {
    display: block;
    margin-top: 30px;
    font-size: 16px;
    font-weight: 500;
}

::placeholder {
    color: #999999;
}

button {
    margin-top: 50px;
    width: 100%;        
    background-color: #274a73d3;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}

button:hover {
    background-color: #274a73;
}

.social {
    margin-top: 30px;
    display: flex;
}

.social div {
    width: 150px;
    border-radius: 3px;
    padding: 5px 10px 10px 5px;
    background-color: rgba(0, 0, 0, 0.00);
    text-align: center;
    cursor: pointer;
}

.social div:hover {
    background-color: rgba(0, 0, 0, 0.15);
}

.social .fb {
    margin-left: 25px;
}

.social i {
    margin-right: 4px;
}

.trademark {
    font-size: 18px;
    font-weight: 500;
    vertical-align: super;
    margin-left: 2px;
    font-weight: normal;
}
