* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(135deg, #f4f6f9, #e9eef5);
    color: #1f2937;
}

.page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
}

.card {
    width: 100%;
    max-width: 720px;
    background: #ffffff;
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

.avatar {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: #111827;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
}

h1 {
    margin: 0;
    font-size: 42px;
    font-weight: 800;
    color: #111827;
}

.job {
    margin-top: 15px;
    font-size: 18px;
    color: #4b5563;
    line-height: 1.7;
}

.contact {
    margin-top: 30px;
    display: grid;
    gap: 12px;
}

.contact a {
    display: block;
    text-decoration: none;
    color: #1f2937;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    padding: 15px;
    border-radius: 12px;
    font-weight: 600;
    transition: .2s;
}

.contact a:hover {
    background: #eef2f7;
}

.btn-login {
    display: inline-block;
    margin-top: 30px;
    background: #111827;
    color: #ffffff;
    text-decoration: none;
    padding: 16px 30px;
    border-radius: 12px;
    font-weight: 700;
    transition: .2s;
}

.btn-login:hover {
    background: #323641;
    transform: translateY(-2px);
}

.footer {
    margin-top: 30px;
    color: #9ca3af;
    font-size: 13px;
}

@media (max-width: 768px) {

    .card {
        padding: 35px 25px;
    }

    h1 {
        font-size: 32px;
    }

    .job {
        font-size: 16px;
    }

    .btn-login {
        width: 100%;
    }
}