.login-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url('blurred-chicken-bg.jpg') center/cover no-repeat;
    padding: 20px;
    position: relative;
}

/* The Hanging Orange Logo Tab */
.login-logo-header {
    background-color: #f39200;
    width: 260px;
    height: 140px;
    border-radius: 0 0 20px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    z-index: 10;
}

.login-logo-header img {
    height: 80px;
    margin-top: 10px;
}

/* The Main Container Card */
.login-card {
    background: rgba(235, 235, 235, 0.95);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 550px;
    border-radius: 60px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    margin-top: 60px; /* Space for the hanging logo */
}

/* Inputs & Buttons */
.login-input {
    background-color: #d1d1d1;
    border: none;
    border-radius: 50px;
    padding: 18px 30px;
    text-align: center;
}

.btn-continue {
    background-color: #f39200;
    color: white;
    border-radius: 50px;
    padding: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 15px rgba(243, 146, 0, 0.3);
}

/* Divider with lines */
.divider {
    position: relative;
    text-align: center;
}

.divider::before, .divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 35%;
    height: 1px;
    background-color: #999;
}

.divider::before { left: 0; }
.divider::after { right: 0; }

.divider span {
    color: #666;
    font-size: 0.9rem;
}

/* Social Buttons (Black Circles) */
.social-btn {
    background-color: #000;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    text-decoration: none;
    transition: transform 0.2s;
}

.social-btn:hover {
    transform: scale(1.1);
    color: #fff;
}

.text-orange {
    color: #f39200;
}