body{
    width: 100%;
    height: 100%;
}
*{
    margin: 0 0;
    padding: 0 0;
    box-sizing: border-box;
}
.subscribe-container {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.subscribe-box {
    width: 100%;
    max-width: 1200px;
    background: white;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    overflow: hidden;
}
.subscribe-content {
    flex: 1;
    padding: 48px;
    max-width: 480px;
}
.image-section {
    flex: 1;
    background-color: #f8f9fa;
    background-image: url('../../image/placeholder-dark-1.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.image-section img {
    display: none;
}
.image-section img {
    max-width: 100%;
    height: auto;
}
.subscribe-content h1 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #1a1a1a;
}
.subtitle {
    color: #666;
    margin-bottom: 32px;
}
.form-group {
    margin-bottom: 24px;
    position: relative;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #1a1a1a;
    font-weight: 500;
}
.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
}  
.form-group input:focus {
    outline: none;
    border-color: #000;
}
.forgot-password {
    position: absolute;
    right: 0;
    top: 0;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 14px;
}
.subscribe-button {
    width: 100%;
    padding: 12px;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 24px;
}
.divider {
    text-align: center;
    margin: 24px 0;
    position: relative;
}
.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background-color: #ddd;
    z-index: 1;
}
.divider::before {
    left: 0;
}
.divider::after {
    right: 0;
}
.divider span {
    background-color: #fff;
    padding: 0 10px;
    color: #666;
    font-size: 14px;
    position: relative;
    z-index: 2;
}
.subscribe-social {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}
.social-button {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-button .iconfont {
    font-size: 20px;
    color: #1a1a1a;
}
.subscribe-footer {
    text-align: center;
    color: #666;
    font-size: 14px;
}
.subscribe-footer a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
}
@media (max-width: 768px) {
    .subscribe-box {
        flex-direction: column;
    }
    .subscribe-content {
        max-width: 100%;
    }
    .image-section {
        display: none;
    }
}