body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f2f5;
}

.container {
    display: flex;
    height: 100%;
    color: #fff;
}

.left-panel {
    background-color: #000;
    position: relative; /* Added for absolute positioning of logo */
    flex-basis: 32%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px;
    position: relative;
}

.right-panel {
    flex-basis: 68%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px;
    background-color: #111111;
    color: #fff;
    position: relative;
}

.logo-container {
    position: absolute;
    top: 20px; /* Adjust as needed */
    left: 20px; /* Adjust as needed */
}

.logo {
    position: absolute; /* 绝对定位logo */
    top: 20px; /* 距离顶部的距离，根据需要调整 */
    left: 20px; /* 距离左边的距离，根据需要调整 */
    max-width: 120px; /* Logo的最大宽度，根据需要调整 */
    max-height: 60px; /* Logo的最大高度，根据需要调整 */
}

.video-text {
    text-align: center;
    margin-bottom: 20px;
}

h1 {
    font-size: 34px;
}


h2 {
    font-size: 34px;
    /* color: transparent;
    background: linear-gradient(to right, #ff4e50, #f9d423);
    -webkit-background-clip: text; */
    background-clip: text;
}

.video-title {
    text-align: center;
    margin-bottom: 20px;
    color: #fff; /* Change the color if needed */
}

.video-description {
    font-size: 32px;
    margin-bottom: 20px;
}

.youtube-gradient {
    background: linear-gradient(45deg, #c2f90d, #f50539);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent; /* Make the text color transparent to show the gradient */
    display: inline; /* Required for background-clip to work */
}

.login-gradient {
    background: linear-gradient(45deg, #141bf9, #f70faa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent; /* Make the text color transparent to show the gradient */
    display: inline; /* Required for background-clip to work */
}

.btn {
    width: 90%;
    padding: 15px;
    margin-bottom: 15px;
    border: none;
    border-radius: 20px;
    font-size: 16px;
    background-color: rgba(225, 223, 223, 0.1); 
    cursor: pointer;
    outline: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}



.social-login {
    margin: 10px 0;
    color: #ffffff;
}

.create-account {

    color: #b3b3b3;
    cursor: pointer;
}

.or-separator {
    color: #888;
}

input[type="email"] {
    padding: 15px;
    margin: 15px 0;
    color: #ffffff;
    width: 85%;
    background-color: rgba(61, 60, 60, 0.1); 
    border-radius: 10px;
}


.login-link a {
    color: #00f;
}

video {
    width: 90%; /* Make video fill the right panel */
    border-radius: 5px; /* Optional: if you want rounded corners */
}
