body {
.alokito-wrapper {
    width: 100%;
    max-width: 420px;
    margin: auto;
    text-align: center;
    padding: 20px;
}

#photo-card {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.frame-bg {
    width: 100%;
}

.photo-circle {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid white;
    background: #fff;
}

.photo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-name {
    position: absolute;
    bottom: 95px;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 28px;
    font-weight: bold;
}

input {
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    border-radius: 10px;
    border: none;
}

button {
    width: 100%;
    margin-top: 15px;
    padding: 15px;
    background: red;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
}