* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", Arial, sans-serif;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f5f7fb;
}

.login-card {
    width: 360px;
    background: #ffffff;
    padding: 35px 40px 45px;
    border-radius: 8px;
    text-align: center;

    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.login-card h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #111827;
}

/* Inputs */
.login-card input {
    width: 100%;
    padding: 14px;
    margin-bottom: 12px;

    border: 1px solid #d9e1eb;
    border-radius: 4px;
    background: #f9fbfd;

    font-size: 14px;
}

.login-card input:focus {
    border-color: #60a5fa;
    outline: none;
    background: white;
}

/* Continue Button */
.continue-btn {
    width: 100%;
    padding: 12px;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;

    margin-top: 8px;
    font-size: 15px;
    font-weight: 600;
}

.continue-btn:hover {
    background: #2563eb;
}

/* Forgot text */
.forgot {
    font-size: 13px;
    margin-top: 15px;
    color: #6b7280;
}

/* Divider Line */
.divider {
    margin: 18px 0;
    position: relative;
}

.divider span {
    background: white;
    padding: 0 12px;
    font-size: 12px;
    color: #6b7280;
    position: relative;
    z-index: 1;
}

/* horizontal line */
.divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #e5e7eb;
}

/* Social Buttons */
.social {
    width: 100%;
    padding: 12px;
    border-radius: 4px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    cursor: pointer;
    margin-bottom: 10px;
}

.social img {
    width: 18px;
}

/* Facebook style */
.facebook {
    background: #3b5998;
}

.facebook:hover {
    background: #2d4373;
}

/* Twitter style */
.twitter {
    background: #1da1f2;
}

.twitter:hover {
    background: #0d8ae8;
}
