* {
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    margin: 0;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Card utama */
.mobile-card {
    width: 360px;
    height: 640px;
    background: linear-gradient(180deg, #081a5a, #5b4ca7);
    border-radius: 20px;
    padding: 30px 20px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo */
.logo {
    margin-top: 40px;
    margin-bottom: 20px;
}

.logo img {
    width: 220px;
}

.logo {
    width: 220px;
    height: auto;
}


/* Judul */
.title {
    font-size: 36px;
    font-weight: bold;
    background: linear-gradient(90deg, #ff7a18, #ffd200);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 40px;
}

/* Input */
input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    margin-bottom: 15px;
}

/* Button */
button {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-weight: bold;
    cursor: pointer;
}

.btn-primary {
    background: #eaeaea;
    color: #081a5a;
}

/* Text bawah */
.text-link {
    margin-top: 15px;
    font-size: 13px;
}

.text-link a {
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
}
