* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(img/bg.jpg) no-repeat center center;
    background-size: cover;
    font-family: Arial, sans-serif;
}

.container {
    width: 80%;
    max-width: 1200px;
    height: 80vh;
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}

/* Left Side */
#content {
    width: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.logo {
    font-size: 30px;
    margin-bottom: 20px;
}

.text h2 {
    font-size: 35px;
}

.text span {
    color: #f39c12;
}

.text p {
    font-size: 16px;
    margin-top: 10px;
}

.social {
    margin-top: 20px;
}

.social i {
    font-size: 25px;
    margin: 10px;
    cursor: pointer;
    transition: 0.3s;
    color: white;
}

.social i:hover {
    color: #f39c12;
}

/* Right Side */
#login {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.login-box {
    width: 80%;
    max-width: 350px;
    background: rgba(255, 255, 255, 0.7);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.login-box h2 {
    margin-bottom: 20px;
    color: #333;
}

/* Input */
.input-box {
    position: relative;
    margin: 15px 0;
}

.input-box input {
    width: 100%;
    padding: 10px;
    padding-left: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
}

/* Password input eye icon */
.input-box i {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #777;
}

/* Remember & Forgot */
.remember-forgot {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin: 10px 0;
    color: #333;
}

.remember-forgot a {
    text-decoration: none;
    color: #333;
}

.remember-forgot a:hover {
    text-decoration: underline;
}

/* Sign in button */
button {
    width: 100%;
    padding: 10px;
    background: #f39c12;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #e67e22;
}

/* Sign up */
.login-register {
    margin-top: 15px;
    font-size: 14px;
    color: #333;
}

.login-register a {
    color: #f39c12;
    text-decoration: none;
    font-weight: bold;
}

.login-register a:hover {
    text-decoration: underline;
}