* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Open Sans', sans-serif; }
body {
    background: #111;
    color: #fff;
    min-height: 100vh;
    display: flex;
    overflow-x: hidden;
}

/* Background Overlay */
.wthree-dot {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    flex-direction: column;
    z-index: 10;
}

/* Glassmorphism Container */
.profile {
    width: 100%;
    max-width: 900px;
    padding: 50px 20px;
    margin: auto; /* This replaces align-items: center safely so it doesn't cut off top */
}
.wthree-grids {
    display: flex;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.5);
}

/* Left Content */
.content-left {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(97, 184, 49, 0.7) 0%, rgba(161, 92, 176, 0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.content-info h2 { font-size: 28px; font-weight: 700; margin-bottom: 20px; }
.w3layouts-banner-info img { max-width: 100%; height: auto; margin: 20px 0; border-radius: 10px; box-shadow: 0 10px 20px rgba(0,0,0,0.3); }

/* Main Content (Form) */
.content-main {
    flex: 1.2;
    width: 100%;
    max-width: 100%;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.w3ls-subscribe h4 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #fff;
    text-align: center;
}

/* Form Styles */
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #ddd !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.form-control {
    max-width: 100%;
    width: 100%;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}
.form-control:focus {
    background: rgba(0, 0, 0, 0.4);
    border-color: #61B831;
    box-shadow: 0 0 15px rgba(97, 184, 49, 0.3);
}

/* Button */
.btn-success, .btn {
    display: inline-block;
    width: 100%;
    padding: 15px;
    margin-top: 10px;
    background: linear-gradient(90deg, #61B831, #A15CB0) !important;
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.btn-success:hover, .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(97, 184, 49, 0.4);
}

/* Links */
.form-group a {
    color: #61B831 !important;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    display: inline-block;
    margin-bottom: 5px;
}
.form-group a:hover { color: #A15CB0 !important; }
p[align="center"] a {
    color: #aaa !important;
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer Copy */
.wthree_footer_copy {
    text-align: center;
    margin: 30px 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .profile { padding: 20px 10px; }
    .content-left { display: none; }
    .content-main { padding: 30px 15px; width: 100%; max-width: 100%; }
    .wthree-grids { border-radius: 10px; }
}
    .content-main { padding: 40px 20px; }
}

