* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f3f3f3;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* FULL mobile */
    overflow: hidden; /* Tidak bisa scroll */
}

.wrapper {
    width: 100%;
    max-width: 420px;
    padding: 20px;
    text-align: center;
}

.top-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto;
    display: block;
    margin-top: -10px; /* bisa kamu naik/turunkan */
}

.title-section h2 {
    font-size: 24px;
    font-weight: bold;
    margin-top: 10px;
}

.title-section p {
    margin-top: 5px;
    color: #555;
}

.input-box {
    background: #d7d7d7;
    padding: 12px;
    border-radius: 10px;
    margin-top: 18px;
}

.input-box input {
    width: 100%;
    border: none;
    background: none;
    outline: none;
    font-size: 15px;
}

.forgot {
    text-align: right;
    margin-top: 5px;
}

.forgot a {
    font-size: 12px;
    text-decoration: none;
    color: #333;
}

.login-btn {
    width: 100%;
    background: #222;
    color: white;
    padding: 12px;
    border-radius: 25px;
    border: none;
    margin-top: 25px;
    font-size: 16px;
    cursor: pointer;
}

.signup {
    margin-top: 15px;
    font-size: 14px;
}

.signup a {
    font-weight: bold;
    text-decoration: none;
}
.image-frame {
    width: 170px;
    height: 170px;
    background: #6b6264;
    border-radius: 50%;
    padding: 0;
    overflow: hidden; /* WAJIB supaya gambar dipotong membulat */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
.top-image {
    width: 100%;
    height: 110%;
    object-fit: cover; /* Biar gambar nge-full lingkaran */
    border-radius: 50%;
}

