@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    padding: 10px 20px;
}

.header-logo {
    max-width: 150px;
}

.watch-now-button {
    background-color: #ff0050;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 15px;
}

.watch-now-button:hover {
    background-color: #e60045;
}

.login-container {
    max-width: 500px;
    margin: 40px auto;
    padding: 20px;
    text-align: center;
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

label {
    align-self: flex-start;
    margin-bottom: 5px;
    font-size: 14px;
}

input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    text-align: left;
    font-size: 12px;
}

.checkbox-container input {
    margin-right: 10px;
    margin-top: 2px;
}

.checkbox-container label a {
    color: #ff0050;
    text-decoration: none;
}

.checkbox-container label a:hover {
    text-decoration: underline;
}

.login-button {
    background-color: #ff0050;
    color: #fff;
    border: none;
    
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 15px;
    margin-top: 20px;
}

.login-button:hover {
    background-color: #e60045;
}
footer {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    padding: 20px 0;
    border-bottom: 1px solid #333;
}

.footer-section {
    flex: 1;
    text-align: center;
}

.footer-logo {
    max-width: 50px;
    margin-bottom: 20px;
}

.footer-section h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 5px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}
.footer-section ul li{
    padding-left: -3px;
    width: 100%;
}
.footer-section ul li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    border-top: 1px solid #333;
}

.social-media a {
    margin: 0 10px;
}

.social-media i {
    max-width: 20px;
    color: white;
}

.footer-copyright {
    font-size: 12px;
}
.footer-section ul li{
    margin-right:40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }

    .watch-now-button {
        margin-top: 10px;
    }

    .login-container {
        padding: 10px;
    }

    .checkbox-container {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .footer-section {
        margin-bottom: 15px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }

    .social-media a {
        margin: 0 5px;
    }

    .social-media {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .footer-section {
        margin-bottom: 15px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }

    .social-media a {
        margin: 0 5px;
    }

    .social-media {
        margin-bottom: 10px;
    }
}
