* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Amazon Ember", Arial, sans-serif;
}

body {
    background-color: white;
    color: #111;
}

/* ===== TOP LOGO ===== */
.signin-logo {
    display: flex;
    justify-content: center;
    padding: 20px 0 16px;
}

.signin-logo .logo {
    width: 110px;
    height: 40px;
    background-image: url('amazon_logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* ===== CARD ===== */
.signin-card {
    width: 350px;
    margin: 0 auto;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 28px 28px 20px;
}

.signin-card h2 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 18px;
    color: #111;
}

.signin-card label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #111;
}

.signin-card input {
    width: 100%;
    border: 1px solid #aaa;
    border-radius: 4px;
    padding: 8px 10px;
    font-size: 14px;
    outline: none;
    margin-bottom: 10px;
}

.signin-card input:focus {
    border-color: #e77600;
    box-shadow: 0 0 0 2px rgba(231,118,0,0.35);
}

.continue-btn {
    width: 100%;
    background: linear-gradient(to bottom, #f7dfa5, #f0c14b);
    border: 1px solid #a88734;
    border-radius: 4px;
    padding: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    color: #111;
    margin-bottom: 14px;
}

.continue-btn:hover {
    background: linear-gradient(to bottom, #f5d78e, #eeb933);
}

.signin-terms {
    font-size: 12px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 16px;
}

.signin-terms a {
    color: #007185;
    text-decoration: none;
}

.signin-terms a:hover {
    text-decoration: underline;
    color: #c7511f;
}

.need-help {
    font-size: 13px;
    color: #007185;
    text-decoration: none;
    display: block;
    margin-bottom: 20px;
}

.need-help:hover {
    text-decoration: underline;
    color: #c7511f;
}

/* ===== DIVIDER ===== */
.signin-divider {
    border: none;
    border-top: 1px solid #e5e5e5;
    margin: 16px 0;
}

/* ===== BUSINESS ===== */
.business-section {
    font-size: 13px;
    color: #111;
    font-weight: 700;
    margin-bottom: 4px;
}

.business-section a {
    display: block;
    font-weight: 400;
    color: #007185;
    text-decoration: none;
    margin-top: 2px;
    font-size: 13px;
}

.business-section a:hover {
    text-decoration: underline;
    color: #c7511f;
}

/* ===== NEW CUSTOMER ===== */
.new-customer {
    text-align: center;
    margin: 24px auto;
    width: 350px;
    font-size: 13px;
    color: #555;
}

.new-customer::before,
.new-customer::after {
    content: '';
    display: inline-block;
    width: 30%;
    height: 1px;
    background: #ddd;
    vertical-align: middle;
    margin: 0 8px;
}

.create-account-btn {
    display: block;
    width: 350px;
    margin: 10px auto 0;
    background: linear-gradient(to bottom, #f5f6f6, #e8e8e8);
    border: 1px solid #adb1b8;
    border-radius: 4px;
    padding: 10px;
    font-size: 14px;
    cursor: pointer;
    color: #111;
    text-align: center;
    text-decoration: none;
}

.create-account-btn:hover {
    background: linear-gradient(to bottom, #e8e9e9, #d2d2d2);
}

/* ===== FOOTER ===== */
.signin-footer {
    border-top: 1px solid #ddd;
    margin-top: 40px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.signin-footer .footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.signin-footer .footer-links a {
    font-size: 12px;
    color: #007185;
    text-decoration: none;
}

.signin-footer .footer-links a:hover {
    text-decoration: underline;
}

.signin-footer .copyright {
    font-size: 12px;
    color: #767676;
}
