* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.register-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.character-img {
    position: absolute;
    top: -133px;
    right: 100;
    z-index: 10;
    pointer-events: none;
}

.character-img img {
    width: 210px;
    height: auto;
}

.register-container {
    background: white;
    width: 400px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(83, 146, 228, 0.25);
    padding: 28px;
    position: relative;
    margin-top: 60px;
}

.register-container h1 {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 13px;
    color: #555;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    outline: none;
    transition: border 0.2s;
}

.form-group input:focus {
    border-color: #4a90d9;
}

.form-group select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    outline: none;
    background: #fff;
    cursor: pointer;
    transition: border 0.2s;
}

.form-group select:focus {
    border-color: #4a90d9;
}

.btn-daftar {
    width: 100%;
    padding: 9px;
    background: #4a90d9;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 5px;
    margin-bottom: 8px;
    transition: background 0.2s;
}

.btn-daftar:hover {
    background: #357abd;
}

.btn-kembali {
    width: 100%;
    padding: 9px;
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: -10px;
    margin-top: 8px;
    transition: background 0.2s;
}

.btn-kembali:hover {
    background: #565e64;
}

.pesan {
    text-align: center;
    margin-top: 10px;
    font-size: 13px;
    min-height: 18px;
    position: relative;
    z-index: 10;
    font-weight: 600;
}

@media (max-width: 480px) {
    .register-container {
        width: 350px;
        padding: 20px 16px;
    }

    .character-img {
        top: -106px;
        right: 85px;
    }

    .character-img img {
        width: 180px;
    }
}
