
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: url('../images/bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    color: #ffffff;

}


/* Header */
.login-header {
    padding: 10px 10px;
    width: 100%;
    background: #0d1113;
    border-bottom: 1px solid #ffffff19;

}

.reddit-logo {
    height: 40px;
    width: auto;
}

/* Login Card */
.login-card {
    background: #181c1f;
    border-radius: 12px;
    padding: 60px;
    width: 100%;
    position: relative;
    z-index: 5;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.login-title {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 16px;
    color: #ffffff;
}

.agreement-text {
    font-size: 13px;
    color: #818384;
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.5;
}

.link-blue {
    color: #818385;
    text-decoration: none;
    transition: color 0.2s ease;
}

.link-blue:hover {
    color: #b8b8b9;
    text-decoration: underline;
}

/* OAuth Buttons */
.oauth-btn {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 12px;
    background: #ffffff;
    color: #000000;
    border: none;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s ease;
}

.oauth-btn:hover {
    background: #e8e8e8;
}

.oauth-icon {
    width: 20px;
    height: 20px;
}

/* Divider */
.divider {
    text-align: center;
    margin: 20px 0;
    font-size: 12px;
    color: #818384;
    font-weight: 600;
}

/* Form Inputs */
.form-input {
    width: 100%;
    padding: 20px 16px;
    margin-bottom: 12px;
    background: #2b3236;
    border: 1px solid #3a3a3b;
    border-radius: 20px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.2s ease;
}

.form-input::placeholder {
    color: #818384;
}

.form-input:focus {
    outline: none;
    background: #2b3236;
    border-color: #2b3236;
}

/* Links Below Inputs */
.form-links {
    margin-bottom: 12px;
    font-size: 13px;
}

.form-links .link-blue {
    color: #818385;
}

.signup-link {
    margin-bottom: 54px;
    font-size: 13px;
    color: #818384;
}

.signup-link .link-blue {
    color: #818385;
    font-weight: 500;
}

/* Login Button */
.login-btn {
    width: 100%;
    padding: 12px 16px;
    background: #d93901;
    color: #fff;
    border: 1px solid #3a3a3b;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.login-btn:hover {
    background: #3a3a3b;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 600px) {
    .login-card {
        margin: 20px;
        padding: 30px 20px;
    }
    
    .login-header {
        left: 20px;
    }
    
    .login-title {
        font-size: 24px;
    }
}