body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background-color: #f9f9f9;
    color: #2c2c2c;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 1rem;
}
.container {
    display: flex;
    flex-direction: row;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.left,
.right {
    flex: 1;
    padding: 2rem;
}
.left {
    background-color: #e6f0f3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #333;
}
.left iframe {
    width: 100%;
    max-width: 400px;
    height: 225px;
    border-radius: 8px;
    border: none;
}
.left h2 {
    margin-top: 1rem;
    text-align: center;
}
.right {
    background: #ffffff;
}
h1 {
    margin-top: 0;
    font-size: 28px;
    color: #1a1a1a;
}
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
    font-family: "Inter", sans-serif;
    width: 93%;
    padding: 12px;
    margin-top: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: #f2f2f2;
    color: #333;
}
input[type="checkbox"] {
    margin-right: 10px;
}
button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background-color: #007bff;
    color: white;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s ease;
}
button:hover {
    background-color: #0056b3;
}
.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}
.social-buttons button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #f2f2f2;
    border: 1px solid #ccc;
    color: #333;
    font-weight: 500;
    transition: background 0.3s ease;
}
.social-buttons button:hover {
    background: #e0e0e0;
}
.terms {
    font-size: 12px;
    color: #555;
}
.terms a {
    color: #007bff;
    text-decoration: underline;
}
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    .left iframe {
        max-width: 100%;
        height: 200px;
    }
}

.content-center{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
img{
    margin-bottom: 30px;;
}

.btn{
    background-color: #3861db;
    color: #ffffff;
    padding: 15px;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 4px;
    font-size: 16px;
}