* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #2f2f2f;
    color: #fff;
    min-height: 100vh;
}

.login-container {
    display: flex;
    min-height: calc(100vh - 60px);
}

.login-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-left img {
    width: 80%;
}

.login-right {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-right h3 {
    text-align: center;
    margin-bottom: 20px;
}

.social-login {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-login a {
    width: 40px;
    height: 40px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
}

.divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.divider span {
    flex: 1;
    height: 1px;
    background: #555;
}

.divider p {
    margin: 0 10px;
    color: #aaa;
}

form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background: transparent;
    border: 1px solid #555;
    border-radius: 4px;
    color: #fff;
}

.options {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 20px;
}

.options a {
    color: #3b82f6;
    text-decoration: none;
}

button {
    width: 100%;
    padding: 12px;
    background: #3b82f6;
    border: none;
    border-radius: 4px;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.register {
    margin-top: 15px;
    text-align: center;
}

.register a {
    color: #ef4444;
    text-decoration: none;
}

footer {
    height: 60px;
    background: #3b6cbf;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.footer-social i {
    margin-left: 15px;
}

.page-wrapper {
    max-width: 1000px;
    margin: 60px auto;
    background: #2a2a2a;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,.4);
    overflow: hidden;
}